Table of Contents

Class RefFive<TFirst, TSecond, TThird, TFourth, TFifth>

Namespace
Ecng.Common
Assembly
Ecng.Common.dll

Represents a quintuple of reference values.

public class RefFive<TFirst, TSecond, TThird, TFourth, TFifth> : RefQuadruple<TFirst, TSecond, TThird, TFourth>, IRefTuple

Type Parameters

TFirst

Type of the first element.

TSecond

Type of the second element.

TThird

Type of the third element.

TFourth

Type of the fourth element.

TFifth

Type of the fifth element.

Inheritance
RefPair<TFirst, TSecond>
RefTriple<TFirst, TSecond, TThird>
RefQuadruple<TFirst, TSecond, TThird, TFourth>
RefFive<TFirst, TSecond, TThird, TFourth, TFifth>
Implements
Inherited Members
Extension Methods

Constructors

RefFive()

Initializes a new instance of the RefFive<TFirst, TSecond, TThird, TFourth, TFifth> class.

public RefFive()

RefFive(TFirst, TSecond, TThird, TFourth, TFifth)

Initializes a new instance of the RefFive<TFirst, TSecond, TThird, TFourth, TFifth> class with specified values.

public RefFive(TFirst first, TSecond second, TThird third, TFourth fourth, TFifth fifth)

Parameters

first TFirst

The first element.

second TSecond

The second element.

third TThird

The third element.

fourth TFourth

The fourth element.

fifth TFifth

The fifth element.

Properties

Fifth

Gets or sets the fifth element.

public TFifth Fifth { get; set; }

Property Value

TFifth

Values

Gets or sets the tuple values.

public override IEnumerable<object> Values { get; set; }

Property Value

IEnumerable<object>

Methods

GetValuesString()

Gets a string that represents the tuple values.

protected override string GetValuesString()

Returns

string

A string representation of the tuple values.