views:

239

answers:

1

Is there an equivalent in VB.NET to the C# ^= operator?

+1  A: 

You have to code it like this:

A = A Xor B
Joel Coehoorn