Show / Hide Table of Contents

Class Triple<T1, T2, T3>

Tuple class with 3 items

Inheritance
object
Tuple<T1, T2, T3>
Triple<T1, T2, T3>
Implements
IEquatable<Tuple<T1, T2, T3>>
Inherited Members
Tuple<T1, T2, T3>.Item1
Tuple<T1, T2, T3>.Item2
Tuple<T1, T2, T3>.Item3
Tuple<T1, T2, T3>.ToString()
Tuple<T1, T2, T3>.Equals(object)
Tuple<T1, T2, T3>.Equals(Tuple<T1, T2, T3>)
Tuple<T1, T2, T3>.GetHashCode()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
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.

Implements

IEquatable<T>

Extension Methods

Extensions.Yield<T>(T)
TupleExtensions.Append<T1, T2, T3, T4>(Tuple<T1, T2, T3>, T4)
In this article
Back to top Generated by DocFX