DateTime.Inequality(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.
Determines whether two specified instances of DateTime are not equal.
public:
static bool operator !=(DateTime d1, DateTime d2);
public static bool operator != (DateTime d1, DateTime d2);
static member op_Inequality : DateTime * DateTime -> bool
Public Shared Operator != (d1 As DateTime, d2 As DateTime) As Boolean
Parameters
- d1
- DateTime
The first object to compare.
- d2
- DateTime
The second object to compare.
Returns
true
if d1
and d2
do not represent the same date and time; otherwise, false
.
Remarks
The Inequality operator determines whether two DateTime values are not equal 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.Equals(Object)