Operator GreaterThan
GreaterThan(FieldValue, FieldValue)
Determines whether one specified instance of
FieldValue is greater than another specified
instance of FieldValue.
Declaration
public static bool operator>(FieldValue value1, FieldValue value2)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldValue | value1 | The first instance to compare. |
| FieldValue | value2 | The second instance to compare. |
Returns
| Type | Description |
|---|---|
| Boolean | true if value1 is greater than
value2, otherwise false. |
Remarks
The comparison is done according to the rules of
CompareTo(FieldValue).
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | At least one of
value1 and value2 is
null. |
| NotSupportedException | Comparison between
value1 and value2 is not
supported. |