Duration.LessThan(Duration, Duration) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定 Duration 的一个实例的值是否小于另一个实例的值。
public:
static bool operator <(System::Windows::Duration t1, System::Windows::Duration t2);
public static bool operator < (System.Windows.Duration t1, System.Windows.Duration t2);
static member ( < ) : System.Windows.Duration * System.Windows.Duration -> bool
Public Shared Operator < (t1 As Duration, t2 As Duration) As Boolean
参数
返回
如果 t1
和 t2
都有值,并且 t1
小于 t2
,则为 true
;否则为 false
。
注解
Forever 被视为大于任何有限值。 与 Automatic 值的任何比较都返回 false
。
此运算符的等效方法是 Duration.Compare(Duration, Duration)