Projects each elements of the specified IEnumerable to out parameters.
public static void Deconstruct<T>(this IEnumerable<T> src, out T x1, out T x2)| parameter | description |
|---|---|
| T | Items type |
| src | Source enumeration |
| x1 | Variable to map the first item to |
| x2 | Variable to map the second item to |
- class ValueTupleExtensions
- namespace Wokhan.Core.Extensions
Projects each elements of the specified IEnumerable to out parameters.
public static void Deconstruct<T>(this IEnumerable<T> src, out T x1, out T x2, out T x3)| parameter | description |
|---|---|
| T | Items type |
| src | Source enumeration |
| x1 | Variable to map the first item to |
| x2 | Variable to map the second item to |
| x3 | Variable to map the third item to |
- class ValueTupleExtensions
- namespace Wokhan.Core.Extensions
Projects each elements of the specified IEnumerable to out parameters.
public static void Deconstruct<T>(this IEnumerable<T> src, out T x1, out T x2, out T x3, out T x4)| parameter | description |
|---|---|
| T | Items type |
| src | Source enumeration |
| x1 | Variable to map the first item to |
| x2 | Variable to map the second item to |
| x3 | Variable to map the third item to |
| x4 | Variable to map the fourth item to |
- class ValueTupleExtensions
- namespace Wokhan.Core.Extensions
Projects each elements of the specified IEnumerable to out parameters.
public static void Deconstruct<T>(this IEnumerable<T> src, out T x1, out T x2, out T x3, out T x4,
out T x5)| parameter | description |
|---|---|
| T | Items type |
| src | Source enumeration |
| x1 | Variable to map the first item to |
| x2 | Variable to map the second item to |
| x3 | Variable to map the third item to |
| x4 | Variable to map the fourth item to |
| x5 | Variable to map the fifth item to |
- class ValueTupleExtensions
- namespace Wokhan.Core.Extensions