NullableTypes Class Library

NullableByte.BitwiseOr Method 

Computes the bitwise OR of the two specified NullableByte structures.

[Visual Basic]
Public Shared Function BitwiseOr( _
   ByVal x As NullableByte, _
   ByVal y As NullableByte _
) As NullableByte
[C#]
public static NullableByte BitwiseOr(
   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 OR operation.

See Also

NullableByte Class | NullableTypes Namespace