Show / Hide Table of Contents

Class Utility.Tuple<T1, T2>

Represents a tuple with two elements.

Inheritance
System.Object
Utility.Tuple<T1>
Utility.Tuple<T1, T2>
Utility.Tuple<T1, T2, T3>
Inherited Members
Utility.Tuple<T1>.Item1
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
public class Tuple<T1, T2> : Utility.Tuple<T1>
Type Parameters
Name Description
T1

The type of the first element of the tuple.

T2

The type of the second element of the tuple.

Constructors

| Improve this Doc View Source

Tuple(T1, T2)

Initializes a new instance of the Utility.Tuple<T1, T2> class.

Declaration
public Tuple(T1 item1, T2 item2)
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.

Properties

| Improve this Doc View Source

Item2

Gets the value of the second component.

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