| ComparerGreaterThanOrEqual Method |
Determines whether
a is greater than or equal to
b
Checks reference equality first with
ReferenceEquals(Object, Object). Then it checks all known types with the >= operator, then with reflection
on 'op_GreaterThanOrEqual'
Namespace:
Cauldron
Assembly:
Cauldron (in Cauldron.dll) Version: 3.2.0.2
Syntax Parameters
- a
- Type: SystemObject
The first object to compare - b
- Type: SystemObject
The second object to compare
Return Value
Type:
Boolean
true if
a is greater than or equal to
b; otherwise, false.
Exceptions See Also