ClassMuple<T1, T2>
Class
A mutable tuple of dimension two.
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.
Syntax:
cs-api-definition
public class Muple<T1, T2> : Muple<T1>
Inheritance: objectMupleMuple<T1>Muple<T1, T2>
Derived Classes:
Inherited Members
Constructors
Muple(T1, T2)
Initializes a new instance of the Muple<T1, T2> class.
Declaration
cs-api-definition
public Muple(T1 item1, T2 item2)
Parameters
item1
T1
The item1.
item2
T2
The item2.
Properties
Item2
Gets or sets the second item.
Declaration
cs-api-definition
public T2 Item2 { get; set; }
Property Value
T2
The item2.