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