Class Muple
An empty, mutable tuple.
Inheritance
System.Object
Muple
Muple<T1>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public abstract class Muple
Constructors
Muple()
Declaration
protected Muple()
Methods
Create<T1>(T1)
Creates a 1-muple.
Declaration
public static Muple<T1> Create<T1>(T1 t1)
Parameters
T1
t1
The t1. |
Returns
Muple<T1>
|
Type Parameters
T1
The type of the 1. |
Create<T1, T2>(T1, T2)
Creates a 2-muple.
Declaration
public static Muple<T1, T2> Create<T1, T2>(T1 t1, T2 t2)
Parameters
T1
t1
The t1. |
T2
t2
The t2. |
Returns
Muple<T1, T2>
|
Type Parameters
T1
The type of the 1. |
T2
The type of the 2. |
Create<T1, T2, T3>(T1, T2, T3)
Creates a 3-muple.
Declaration
public static Muple<T1, T2, T3> Create<T1, T2, T3>(T1 t1, T2 t2, T3 t3)
Parameters
T1
t1
The t1. |
T2
t2
The t2. |
T3
t3
The t3. |
Returns
Muple<T1, T2, T3>
|
Type Parameters
T1
The type of the 1. |
T2
The type of the 2. |
T3
The type of the 3. |