Table of Contents

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

T

Type of first value

U

Type 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

firstValue T

First value.

secondValue U

Second 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