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