public static UInt128 operator ^(
	UInt128 a,
	UInt128 b
)Public Shared Operator Xor ( 
	a As UInt128,
	b As UInt128
) As UInt128public:
static UInt128 operator ^(
	UInt128 a, 
	UInt128 b
)static let inline (^^^)
        a : UInt128 * 
        b : UInt128  : UInt128The bitwise XOR of two arguements has a 1 in each position which for which the two arguments differ, and a 0 in each position for which they agree.