Class Quad<T1, T2, T3, T4>
Tuple class with 4 items (also called Quadruple)
Implements
IEquatable<Tuple<T1, T2, T3, T4>>
Inherited Members
Namespace: Lokad
Assembly: Algenta.Colectica.Model.dll
Syntax
[Serializable]
public sealed class Quad<T1, T2, T3, T4> : Tuple<T1, T2, T3, T4>, IEquatable<Tuple<T1, T2, T3, T4>>
Type Parameters
Name | Description |
---|---|
T1 | The type of the first item. |
T2 | The type of the second item. |
T3 | The type of the third item. |
T4 | The type of the fourth item. |
Constructors
Quad(T1, T2, T3, T4)
Initializes a new instance of the Quad<T1, T2, T3, T4> class.
Declaration
public Quad(T1 first, T2 second, T3 third, T4 fourth)
Parameters
Type | Name | Description |
---|---|---|
T1 | first | The first item. |
T2 | second | The second item. |
T3 | third | The third item. |
T4 | fourth | The fourth item. |