NullableTypes Class Library

NullableByte Less Than Or Equal Operator 

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

[Visual Basic]
returnValue = NullableByte.op_LessThanOrEqual(x, y)
[C#]
public static NullableBoolean operator <=(
   NullableByte x,
   NullableByte y
);

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

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

See Also

NullableByte Class | NullableTypes Namespace