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
TThe type of the first value.
UThe type of the second value.
VThe 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
value1TThe first value.
value2UThe second value.
value3VThe third value.
Properties
Item3
Gets or sets the third value.
public V Item3 { get; set; }
Property Value
- V