| ComparerLessThanOrEqual Method |
Determines whether
a is less 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_LessThanOrEqual'
Namespace:
Cauldron
Assembly:
Cauldron (in Cauldron.dll) Version: 3.2.0.1 (3.2.0.1)
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 less than or equal to
b; otherwise, false.
Exceptions See Also