class Tuple<T1>
Represents a 1-tuple, or singleton.
T1The type of the tuple's only component.
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 object's single component.
- Returns The value of the current object's single component.
public int GetHashCode( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public Tuple<T1>( T1 item1 )
😔 No documentation found.