NullableTypes Class Library

NullableInt16 Exclusive Or Operator 

Bitwise exclusive OR operator

[Visual Basic]
returnValue = NullableInt16.op_ExclusiveOr(x, y)
[C#]
public static NullableInt16 operator ^(
   NullableInt16 x,
   NullableInt16 y
);

Parameters

x
Nullable Int16 value
y
Nullable Int16 value

Return Value

result of bitwise exclusive 'or' operation

See Also

NullableInt16 Class | NullableTypes Namespace