| PairTKey, TValueInequality Operator |
Determines whether two specified
PairTKey, TValue objects have different values.
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static bool operator !=(
Pair<TKey, TValue> left,
Pair<TKey, TValue> right
)
Public Shared Operator <> (
left As Pair(Of TKey, TValue),
right As Pair(Of TKey, TValue)
) As Boolean
public:
static bool operator !=(
Pair<TKey, TValue>^ left,
Pair<TKey, TValue>^ right
)
static let inline (<>)
left : Pair<'TKey, 'TValue> *
right : Pair<'TKey, 'TValue> : bool
Parameters
- left
- Type: Ookii.Jumbo.IOPairTKey, TValue
A PairTKey, TValue or . - right
- Type: Ookii.Jumbo.IOPairTKey, TValue
A PairTKey, TValue or .
Return Value
Type:
Boolean if the value of
left is different from
right; otherwise,
.
See Also