Table of Contents

Class OutRef<T, U>

Namespace
SunamoResult
Assembly
SunamoResult.dll

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

public class OutRef<T, U>

Type Parameters

T

The type of the first value.

U

The type of the second value.

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

Constructors

OutRef(T, U)

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

public OutRef(T value1, U value2)

Parameters

value1 T

The first value.

value2 U

The 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