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