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
TThe type of the first value.
UThe 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
value1TThe first value.
value2UThe 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