Pair<(Of <(<'TFirst, TSecond>)>)> Operators and Type Conversions
The Pair<(Of <(<'TFirst, TSecond>)>)> type exposes the following members.
Operators
Name | Description | |
---|---|---|
![]() ![]() |
Equality |
Determines if two pairs are equal. Two pairs are equal if the first and second elements
both compare equal using IComparable<T>.Equals or object.Equals.
|
![]() ![]() |
Explicit Narrowing Explicit Explicit Explicit (Pair<(Of <<'(TFirst, TSecond>)>>) to KeyValuePair<(Of <<'(TFirst, TSecond>)>>)) |
Converts a Pair to a KeyValuePair. The Key part of the KeyValuePair gets
the First element, and the Value part of the KeyValuePair gets the Second
elements.
|
![]() ![]() |
Explicit Narrowing Explicit Explicit Explicit (KeyValuePair<(Of <<'(TFirst, TSecond>)>>) to Pair<(Of <<'(TFirst, TSecond>)>>)) |
Converts a KeyValuePair structure into a Pair. The
First element gets the Key, and the Second element gets the Value.
|
![]() ![]() |
Inequality |
Determines if two pairs are not equal. Two pairs are equal if the first and second elements
both compare equal using IComparable<T>.Equals or object.Equals.
|