class Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>
Represents an n-tuple, where n is 8 or greater.
T1The type of the tuple's first component.T2The type of the tuple's second component.T3The type of the tuple's third component.T4The type of the tuple's fourth component.T5The type of the tuple's fifth component.T6The type of the tuple's sixth component.T7The type of the tuple's seventh component.TRestAny generic object that defines the types of the tuple's remaining components.
public bool Equals( object obj )
Returns a value that indicates whether the current object is equal to a specified object.
objThe object to compare with this instance.- Returns if the current instance is equal to the specified object; otherwise, .
public T1 Item1 { get; }
Gets the value of the current object's first component.
- Returns The value of the current object's first component.
public T2 Item2 { get; }
Gets the value of the current object's second component.
- Returns The value of the current object's second component.
public T3 Item3 { get; }
Gets the value of the current object's third component.
- Returns The value of the current object's third component.
public T4 Item4 { get; }
Gets the value of the current object's fourth component.
- Returns The value of the current object's fourth component.
public T5 Item5 { get; }
Gets the value of the current object's fifth component.
- Returns The value of the current object's fifth component.
public T6 Item6 { get; }
Gets the value of the current object's sixth component.
- Returns The value of the current object's sixth component.
public T7 Item7 { get; }
Gets the value of the current object's seventh component.
- Returns The value of the current object's seventh component.
public TRest Rest { get; }
Gets the current object's remaining components.
- Returns The value of the current object's remaining components.
public int GetHashCode( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>( T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, TRest rest )
😔 No documentation found.