struct ValueTuple<T1,T2>

in global :: System

Represents a value tuple with 2 components.

  • T1 The type of the value tuple's first element.
  • T2 The type of the value tuple's second 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 bool Equals( ValueTuple<T1,T2> other )

😔 No documentation found.

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

😔 No documentation found.