Click or drag to resize

Pair<TKey, TValue>.GreaterThan Operator

Determines whether one specified Pair<TKey, TValue> is greater than another specified Pair<TKey, TValue>

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static bool operator >(
	Pair<TKey, TValue>? left,
	Pair<TKey, TValue>? right
)

Parameters

left  Pair<TKey, TValue>
A Pair<TKey, TValue> or null.
right  Pair<TKey, TValue>
A Pair<TKey, TValue> or null.

Return Value

Boolean
true if left is greater than right; otherwise, false.
See Also