DateTime.GreaterThan(DateTime, DateTime) 运算符

定义

确定指定的 DateTime 是否晚于另一个指定的 DateTime

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

参数

t1
DateTime

要比较的第一个对象。

t2
DateTime

要比较的第二个对象。

返回

Boolean

如果 true 晚于 t1,则为 t2;否则为 false

注解

GreaterThan运算符通过比较两个值的 DateTime 计时周期数来确定这两个值之间的关系。 在比较 DateTime 对象之前,请确保对象表示相同时区中的时间。 可以通过比较其 Kind 属性的值来执行此操作。

此运算符的等效方法是 DateTime.Compare(DateTime, DateTime)

适用于

另请参阅