Class Triple<T1, T2, T3>
Tuple class with 3 items
Implements
IEquatable<Tuple<T1, T2, T3>>
Inherited Members
Namespace: Lokad
Assembly: Algenta.Colectica.Model.dll
Syntax
[Serializable]
public sealed class Triple<T1, T2, T3> : Tuple<T1, T2, T3>, IEquatable<Tuple<T1, T2, T3>>
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. |
Constructors
Triple(T1, T2, T3)
Initializes a new instance of the Triple<T1, T2, T3> class.
Declaration
public Triple(T1 first, T2 second, T3 third)
Parameters
Type | Name | Description |
---|---|---|
T1 | first | The first item. |
T2 | second | The second item. |
T3 | third | The third item. |