How to do a converse nonimplication using VB.NET (between two integers)?
I have two Flag Enumerations myFlag1 and myFlag2 and want to obtain myFlag3 containing just values that are in myFlag2 but not also in myFlag1.
I know XOR operator but this is not good.

Say I have
010110
100011
------
100001 (this is what I need)
Also
111
101
---
000
It’s almost exactly how you would say it out loud when trying to explain it to someone. 🙂