class Tuple<T1,T2,T3>

in global :: System

Represents a 3-tuple, or triple.

  • T1 The type of the tuple's first component.
  • T2 The type of the tuple's second component.
  • T3 The type of the tuple's third component.

public bool Equals( object obj )

Returns a value that indicates whether the current object 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 { 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 int GetHashCode( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public Tuple<T1,T2,T3>( T1 item1, T2 item2, T3 item3 )

😔 No documentation found.