NullableTypes Class Library

NullableInt64.LessThanOrEqual Method 

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

[Visual Basic]
Public Shared Function LessThanOrEqual( _
   ByVal x As NullableInt64, _
   ByVal y As NullableInt64 _
) As NullableBoolean
[C#]
public static NullableBoolean LessThanOrEqual(
   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 less than the second instance, otherwise False.

See Also

NullableInt64 Class | NullableTypes Namespace