Turns a generic IEnumerable into an object[] enumeration (each property being mapped into the array)
public static IEnumerable<object[]> AsObjectCollection(this IEnumerable src,
params string[] properties)| parameter | description |
|---|---|
| src | Source enumeration |
| properties | Name of the properties to use to populate the array |
- class EnumerableExtensions
- namespace Wokhan.Collections.Generic.Extensions
Turns a generic IEnumerable into an object[] enumeration (each property being mapped into the array)
public static IEnumerable<object[]> AsObjectCollection<T>(this IEnumerable<T> src,
params string[] properties)| parameter | description |
|---|---|
| src | Source enumeration |
| properties | Name of the properties to use to populate the array |
- class EnumerableExtensions
- namespace Wokhan.Collections.Generic.Extensions