Table of Contents

Class OutRef3<T, U, V>

Namespace
SunamoResult
Assembly
SunamoResult.dll

Holds three values as an alternative to ref/out parameters for async methods.

public class OutRef3<T, U, V> : OutRef<T, U>

Type Parameters

T

The type of the first value.

U

The type of the second value.

V

The type of the third value.

Inheritance
OutRef<T, U>
OutRef3<T, U, V>
Derived
Inherited Members
Extension Methods

Constructors

OutRef3(T, U, V)

Initializes a new instance with three values.

public OutRef3(T value1, U value2, V value3)

Parameters

value1 T

The first value.

value2 U

The second value.

value3 V

The third value.

Properties

Item3

Gets or sets the third value.

public V Item3 { get; set; }

Property Value

V