Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Vb

Idiom #237 Xor integers

Assign to c the result of (a xor b)

Dim c As Integer = a Xor b

The Xor operator may be overloaded by types
int c = a ^ b;

New implementation...
< >
programming-idioms.org