struct ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>

in global :: System

Represents an n-value tuple, where n is 8 or greater.

  • T1 The type of the value tuple's first element.
  • T2 The type of the value tuple's second element.
  • T3 The type of the value tuple's third element.
  • T4 The type of the value tuple's fourth element.
  • T5 The type of the value tuple's fifth element.
  • T6 The type of the value tuple's sixth element.
  • T7 The type of the value tuple's seventh element.
  • TRest Any generic value tuple instance that defines the types of the tuple's remaining elements.

public bool Equals( object obj )

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

  • obj The object to compare with this instance.
  • Returns if the current instance is equal to the specified object; otherwise, .

public T1 Item1

Gets the value of the current instance's first element.

public T2 Item2

Gets the value of the current instance's second element.

public T3 Item3

Gets the value of the current instance's third element.

public T4 Item4

Gets the value of the current instance's fourth element.

public T5 Item5

Gets the value of the current instance's fifth element.

public T6 Item6

Gets the value of the current instance's sixth element.

public T7 Item7

Gets the value of the current instance's seventh element.

public TRest Rest

Gets the current instance's remaining elements.

public bool Equals( ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> other )

😔 No documentation found.

public int CompareTo( ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> other )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public ValueTuple<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.