NullableTypes Class Library

NullableDecimal Greater Than Operator 

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

[Visual Basic]
returnValue = NullableDecimal.op_GreaterThan(x, y)
[C#]
public static NullableBoolean operator >(
   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 the second instance, otherwise False.

See Also

NullableDecimal Class | NullableTypes Namespace