Class
Muple<T1, T2, T3>

A mutable tuple of dimension three.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Type Parameters:

T1

The data type of the first item.

T2

The data type of the second item.

T3

The data type of the third item.

Syntax:

cs-api-definition
[SuppressMessage("Microsoft.Design", "CA1005:AvoidExcessiveParametersOnGenericTypes")]
public class Muple<T1, T2, T3> : Muple<T1, T2>

Inheritance: objectMupleMuple<T1>Muple<T1, T2>Muple<T1, T2, T3>

Derived Classes: Muple<T1, T2, T3, T4>

Inherited Members Muple<T1, T2>.Item2Muple<T1>.Item1Muple.Create<T1>(T1)Muple.Create<T1, T2>(T1, T2)Muple.Create<T1, T2, T3>(T1, T2, T3)

Constructors

Muple(T1, T2, T3)

Initializes a new instance of the Muple<T1, T2, T3> class.

Declaration

cs-api-definition
public Muple(T1 item1, T2 item2, T3 item3)

Parameters

item1

T1

The item1.

item2

T2

The item2.

item3

T3

The item3.

Properties

Item3

Gets or sets the third item.

Declaration

cs-api-definition
public T3 Item3 { get; set; }

Property Value

T3

The item3.