Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

Pair<(Of <(<'TFirst, TSecond>)>)> Operators and Type Conversions

The Pair<(Of <(<'TFirst, TSecond>)>)> type exposes the following members.

Operators


  Name Description
Public operator Static member 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.
Public operator Static member 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.
Public operator Static member 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.
Public operator Static member 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.