Determines wheter the first TimeSpan is greater than and equal to the second TimeSpan.
[C#] public static bool operator >=( TimeSpan t1, TimeSpan t2 ); [C++] public: static bool operator op_GreaterThanOrEqual( TimeSpan t1, TimeSpan t2 ); [JScript] returnValue = t1 >= t2;
[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.
[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.
true if t1 is the greater than and equal to t2; otherwise. false.
This TimeSpan operator performs the arithmetic function of comparing two TimeSpan values whether the first TimeSpan is greater than and equal to the second TimeSpan (t1 >= t2) and returning a Boolean determination of their relationship.