Class Tuple<T1, T2, T3, T4>
Represents a 4-tuple, or quadruple.
Inheritance
System.Object
Tuple<T1, T2, T3, T4>
Namespace: RSG
Syntax
public class Tuple<T1, T2, T3, T4>
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. |
T4 | The type of the tuple's fourth 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 |
Item4
Gets the value of the current tuple's fourth component.
Declaration
public T4 Item4 { get; }
Property Value
Type | Description |
---|---|
T4 |