Noda Time
LessThanOrEqual Operator
NamespacesNodaTimeLocalDateLessThanOrEqual(LocalDate, LocalDate)

[This is preliminary documentation and is subject to change.]

Compares two LocalDate values to see if the left one is earlier than or equal to the right one.
Declaration Syntax
C#Visual BasicVisual C++
public static bool operator <=(
	LocalDate lhs,
	LocalDate rhs
)
Public Shared Operator <= ( _
	lhs As LocalDate, _
	rhs As LocalDate _
) As Boolean
public:
static bool operator <=(
	LocalDate lhs, 
	LocalDate rhs
)
Parameters
lhs (LocalDate)
First operand of the comparison
rhs (LocalDate)
Second operand of the comparison
Return Value
true if the lhs is earlier than or equal to rhs, false otherwise.
Remarks
This operator always returns false if the two operands have different calendars. See the top-level type documentation for more information about comparisons.

Assembly: NodaTime (Module: NodaTime.dll) Version: 1.2.0.0 (1.2.0)