NullableTypes Class Library

NullableByte.Xor Method 

Computes the bitwise exclusive-OR of the two specified NullableByte structures.

[Visual Basic]
Public Shared Function Xor( _
   ByVal x As NullableByte, _
   ByVal y As NullableByte _
) As NullableByte
[C#]
public static NullableByte Xor(
   NullableByte x,
   NullableByte y
);

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

Null if either instance of NullableByte is Null otherwise a NullableByte structure whose Value property contains the results of the bitwise XOR operation.

See Also

NullableByte Class | NullableTypes Namespace