Class OutRef3DC<T, U, V>
- Namespace
- SunamoDevCode._public
- Assembly
- SunamoDevCode.dll
EN: Container for three values (similar to Tuple but mutable) CZ: Kontejner pro tři hodnoty (podobné Tuple ale měnitelné)
public class OutRef3DC<T, U, V> : OutRefDC<T, U>
Type Parameters
TType of first value
UType of second value
VType of third value
- Inheritance
-
OutRefDC<T, U>OutRef3DC<T, U, V>
- Inherited Members
- Extension Methods
Constructors
OutRef3DC(T, U, V)
Initializes a new instance with three values.
public OutRef3DC(T firstValue, U secondValue, V thirdValue)
Parameters
firstValueTFirst value.
secondValueUSecond value.
thirdValueVThird value.
Properties
Item3
Gets or sets the third value.
public V Item3 { get; set; }
Property Value
- V