NullableTypes Class Library

NullableInt64 Greater Than Operator 

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

[Visual Basic]
returnValue = NullableInt64.op_GreaterThan(x, y)
[C#]
public static NullableBoolean operator >(
   NullableInt64 x,
   NullableInt64 y
);

Parameters

x
A NullableInt64 structure.
y
A NullableInt64 structure.

Return Value

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

See Also

NullableInt64 Class | NullableTypes Namespace