struct ValueTuple<T1,T2,T3,T4>

in global :: System

Represents a value tuple with 4 components.

  • 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.

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 bool Equals( ValueTuple<T1,T2,T3,T4> other )

😔 No documentation found.

public int CompareTo( ValueTuple<T1,T2,T3,T4> 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>( T1 item1, T2 item2, T3 item3, T4 item4 )

😔 No documentation found.