ValueTuple Methods

 

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

NameDescription
System_CAPS_pubmethodCompareTo(ValueTuple)

Compares the current ValueTuple instance with a specified object.

System_CAPS_pubmethodSystem_CAPS_staticCreate()

Creates a new value tuple with zero components.

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1>(T1)

Creates a new value tuple with 1 component (a singleton).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2>(T1, T2)

Creates a new value tuple with 2 components (a pair).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3>(T1, T2, T3)

Creates a new value tuple with 8 components (a triple).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3, T4>(T1, T2, T3, T4)

Creates a new value tuple with 4 components (a quadruple).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3, T4, T5>(T1, T2, T3, T4, T5)

Creates a new value tuple with 5 components (a quintuple).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3, T4, T5, T6>(T1, T2, T3, T4, T5, T6)

Creates a new value tuple with 6 components (a sexuple).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3, T4, T5, T6, T7>(T1, T2, T3, T4, T5, T6, T7)

Creates a new value tuple with 7 components (a septuple).

System_CAPS_pubmethodSystem_CAPS_staticCreate<T1, T2, T3, T4, T5, T6, T7, T8>(T1, T2, T3, T4, T5, T6, T7, T8)

Creates a new value tuple with 8 components (an octuple).

System_CAPS_pubmethodEquals(Object^)

Returns a value that indicates whether the current ValueTuple instance is equal to a specified object.

(Overrides ValueType::Equals(Object^).)

System_CAPS_pubmethodEquals(ValueTuple)

Determines whether two ValueTuple instances are equal. This method always returns true.

System_CAPS_pubmethodGetHashCode()

Returns the hash code for the current ValueTuple instance. (Overrides ValueType::GetHashCode().)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodToString()

Returns the string representation of this ValueTuple instance.(Overrides ValueType::ToString().)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodIStructuralComparable::CompareTo(Object^, IComparer^)

Compares the current ValueTuple instance to a specified object.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIStructuralEquatable::Equals(Object^, IEqualityComparer^)

Returns a value that indicates whether the current ValueTuple instance is equal to a specified object based on a specified comparison method.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIStructuralEquatable::GetHashCode(IEqualityComparer^)

Returns the hash code for this ValueTuple instance.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIComparable::CompareTo(Object^)

Compares this ValueTuple instance with a specified object and returns an indication of their relative values.

Return to top
Show: