Class RefFive<TFirst, TSecond, TThird, TFourth, TFifth>
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
TFirstThe first element.
second
TSecondThe second element.
third
TThirdThe third element.
fourth
TFourthThe fourth element.
fifth
TFifthThe 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
Methods
GetValuesString()
Gets a string that represents the tuple values.
protected override string GetValuesString()
Returns
- string
A string representation of the tuple values.