NullableTypes Class Library

NullableByte.GreaterThanOrEqual Method 

Compares two instances of NullableByte structure to determine if the first is greater than or equal to the second.

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

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

A NullableBoolean structure that is Null if either instance of NullableByte is Null, True if the first instance is greater than or equal to the second instance, otherwise False.

See Also

NullableByte Class | NullableTypes Namespace