C# DateTime Inequality
Description
DateTime Inequality
determines whether two specified
instances of DateTime are not equal.
Syntax
DateTime.Inequality
has the following syntax.
public static bool operator !=(
DateTime d1,
DateTime d2
)
Parameters
DateTime.Inequality
has the following parameters.
d1
- The first object to compare.d2
- The second object to compare.
Returns
DateTime.Inequality
method returns true if d1 and d2 do not represent the same date and time; otherwise, false.
Example
The following code shows how to use DateTime.Inequality
operator.
using System;//from w w w . j a va 2 s. c o m
public class MainClass{
public static void Main(String[] argv){
System.DateTime april19 = new DateTime(2001, 4, 19);
System.DateTime otherDate = new DateTime(1991, 6, 5);
bool result = april19 != otherDate;
System.Console.WriteLine(result);
otherDate = new DateTime(2001, 4, 19);
result = april19 != otherDate;
System.Console.WriteLine(result);
}
}
The code above generates the following result.