NullableTypes Class Library

NullableDateTime Less Than Operator 

Compare two NullableDateTime instances.

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

Parameters

x
Instance to compare from.
y
Instance to compare to.

Return Value

True if x is less than y, null value if one or both of the instances are NullableDatetime.Null, false if x is greater than or equal to y.

See Also

NullableDateTime Class | NullableTypes Namespace