Table of Contents

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

T

Type of first value

U

Type of second value

V

Type 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

firstValue T

First value.

secondValue U

Second value.

thirdValue V

Third value.

Properties

Item3

Gets or sets the third value.

public V Item3 { get; set; }

Property Value

V