Shimmy Weitzhandler
Shimmy Weitzhandler

Reputation: 104741

^= operator in vb.net (Xor Equals)?

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

Upvotes: 2

Views: 1827

Answers (1)

Joel Coehoorn
Joel Coehoorn

Reputation: 415820

You have to code it like this:

A = A Xor B

Upvotes: 2

Related Questions