NullableTypes Class Library

NullableInt32.LessThanOrEqual Method 

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

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

Parameters

x
A NullableInt32 structure.
y
A NullableInt32 structure.

Return Value

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

See Also

NullableInt32 Class | NullableTypes Namespace