Triple<(Of <(<'TFirst, TSecond, TThird>)>)> Methods
The Triple<(Of <(<'TFirst, TSecond, TThird>)>)> type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
CompareTo |
Compares this triple to another triple of the some type. The triples are compared by using the IComparable<T> or IComparable interface on TFirst, TSecond, and TThird. The triples are compared by their first elements first, if their first elements are equal, then they are compared by their second elements. If their second elements are also equal, then they are compared by their third elements. If TFirst, TSecond, or TThird does not implement IComparable<T> or IComparable, then an NotSupportedException is thrown, because the triples cannot be compared. |
![]() |
Equals(Object) |
Determines if this triple is equal to another object. The triple is equal to another object
if that object is a Triple, all element types are the same, and the all three elements
compare equal using object.Equals.
|
![]() |
Equals(Triple<(Of <<'(TFirst, TSecond, TThird>)>>)) |
Determines if this triple is equal to another triple. Two triples are equal if the all three elements
compare equal using IComparable<T>.Equals or object.Equals.
|
![]() |
GetHashCode |
Returns a hash code for the triple, suitable for use in a hash-table or other hashed collection.
Two triples that compare equal (using Equals) will have the same hash code. The hash code for
the triple is derived by combining the hash codes for each of the two elements of the triple.
|
![]() |
ToString |
Returns a string representation of the triple. The string representation of the triple is
of the form:
First: {0}, Second: {1}, Third: {2}
where {0} is the result of First.ToString(), {1} is the result of Second.ToString(), and
{2} is the result of Third.ToString() (or "null" if they are null.)
|