DateTime.LessThanOrEqual(DateTime, DateTime) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
static bool operator <=(DateTime t1, DateTime t2);
public static bool operator <= (DateTime t1, DateTime t2);
static member ( <= ) : DateTime * DateTime -> bool
Public Shared Operator <= (t1 As DateTime, t2 As DateTime) As Boolean
Parameters
- t1
- DateTime
The first object to compare.
- t2
- DateTime
The second object to compare.
Returns
true
if t1
is the same as or earlier than t2
; otherwise, false
.
Remarks
The LessThanOrEqual operator determines the relationship between two DateTime values by comparing their number of ticks. Before comparing DateTime objects, make sure that the objects represent times in the same time zone. You can do this by comparing the values of their Kind property.
The equivalent method for this operator is DateTime.Compare(DateTime, DateTime)