NullableTypes Class Library

NullableDecimal.GreaterThanOrEqual Method 

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

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

Parameters

x
A NullableDecimal structure.
y
A NullableDecimal structure.

Return Value

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

See Also

NullableDecimal Class | NullableTypes Namespace