ComparerTypeWebEnum Enumeration |
Enumeration to distinguish different types of comparisons
Namespace:
Tse.EasyBook.Server.DataContracts.ValueTypes
Assembly:
Tse.EasyBook.Server.DataContractsModelCommon (in Tse.EasyBook.Server.DataContractsModelCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic enum ComparerTypeWebEnum
Members
| Member name | Value | Description |
---|
| Equal | 0 |
Compares using the equality operator
|
| LessThanOrEqual | 1 |
Value a must be less than or equal to value b
|
| GreaterThanOrEqual | 2 |
Value a must be greater than or equal to value b
|
| LessThan | 3 |
Value a must be less than value b
|
| GreaterThan | 4 |
Value a must be greater than value b
|
See Also