Class Tuple<T1, T2>
Represents a 2-tuple, or pair.
Inheritance
System.Object
Tuple<T1, T2>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System
Assembly: System.Linq.Dynamic.Core.dll
Syntax
public class Tuple<T1, T2>
Type Parameters
| Name | Description |
|---|---|
| T1 | The type of the tuple's first component. |
| T2 | The type of the tuple's second component. |
Properties
| Improve this Doc View SourceItem1
The value of the current System.Tuple`2 object's first component.
Declaration
public T1 Item1 { get; }
Property Value
| Type | Description |
|---|---|
| T1 |
Item2
The value of the current System.Tuple`2 object's second component.
Declaration
public T2 Item2 { get; }
Property Value
| Type | Description |
|---|---|
| T2 |