Show / Hide Table of Contents

Class Utility.Tuple<T1, T2, T3>

Represents a tuple with three elements.

Inheritance
System.Object
Utility.Tuple<T1>
Utility.Tuple<T1, T2>
Utility.Tuple<T1, T2, T3>
Inherited Members
Utility.Tuple<T1, T2>.Item2
Utility.Tuple<T1>.Item1
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 Source

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

Item3

Gets the value of the third component.

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