Show / Hide Table of Contents

Class Utility.Tuple<T1>

Represents a tuple with one element.

Inheritance
System.Object
Utility.Tuple<T1>
Utility.Tuple<T1, T2>
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 Source

Tuple(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 Source

Item1

Gets the value of the first component.

Declaration
public T1 Item1 { get; }
Property Value
Type Description
T1
Back to top Copyright © 2018 Özgür Özçıtak