GreaterThanOrEqual Operator
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Determines whether one specified DateTime is greater than or equal to another specified DateTime.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Operator >= ( _
t1 As DateTime, _
t2 As DateTime _
) As Boolean
public static bool operator >=(
DateTime t1,
DateTime t2
)
public:
static bool operator >=(
DateTime t1,
DateTime t2
)
static let inline (>=)
t1:DateTime *
t2:DateTime : bool
JScript does not support overloaded operators.
Parameters
- t1
Type: System. . :: . .DateTime
The first object to compare.
- t2
Type: System. . :: . .DateTime
The second object to compare.
Return Value
Type: System. . :: . .Boolean
true if t1 is greater than or equal to t2; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.