Table of Contents

Class OutRef4<T, U, V, W>

Namespace
SunamoResult
Assembly
SunamoResult.dll

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

public class OutRef4<T, U, V, W> : OutRef3<T, U, V>

Type Parameters

T

The type of the first value.

U

The type of the second value.

V

The type of the third value.

W

The type of the fourth value.

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

Constructors

OutRef4(T, U, V, W)

Initializes a new instance with four values.

public OutRef4(T value1, U value2, V value3, W value4)

Parameters

value1 T

The first value.

value2 U

The second value.

value3 V

The third value.

value4 W

The fourth value.

Properties

Item4

Gets or sets the fourth value.

public W Item4 { get; set; }

Property Value

W