Class Utility.Tuple<T1, T2, T3>
Represents a tuple with three elements.
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
public class Tuple<T1, T2, T3> : Utility.Tuple<T1, T2>
Type Parameters
| Name | Description |
|---|---|
| T1 | The type of the first element of the tuple. |
| T2 | The type of the second element of the tuple. |
| T3 | The type of the third element of the tuple. |
Constructors
| Improve this Doc View SourceTuple(T1, T2, T3)
Initializes a new instance of the Utility.Tuple<T1, T2, T3> class.
Declaration
public Tuple(T1 item1, T2 item2, T3 item3)
Parameters
| Type | Name | Description |
|---|---|---|
| T1 | item1 | The value of the first component of the tuple. |
| T2 | item2 | The value of the second component of the tuple. |
| T3 | item3 | The value of the third component of the tuple. |
Properties
| Improve this Doc View SourceItem3
Gets the value of the third component.
Declaration
public T3 Item3 { get; }
Property Value
| Type | Description |
|---|---|
| T3 |