Class Tuple<T1, T2, T3>
Represents a 3-tuple, or triple.
Inheritance
System.Object
Tuple<T1, T2, T3>
Namespace: RSG
Syntax
public class Tuple<T1, T2, T3>
Type Parameters
Name | Description |
---|---|
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. |
Properties
Item1
Gets the value of the current tuple's first component.
Declaration
public T1 Item1 { get; }
Property Value
Type | Description |
---|---|
T1 |
Item2
Gets the value of the current tuple's second component.
Declaration
public T2 Item2 { get; }
Property Value
Type | Description |
---|---|
T2 |
Item3
Gets the value of the current tuple's third component.
Declaration
public T3 Item3 { get; }
Property Value
Type | Description |
---|---|
T3 |