ToArrayByIndexExtension Class

ToArrayByIndex extension.

Definition

Namespace: MoreLinq.Extensions
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
C#
public static class ToArrayByIndexExtension
Inheritance
Object    ToArrayByIndexExtension

Methods

ToArrayByIndexT(IEnumerableT, FuncT, Int32) Creates an array from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array.
ToArrayByIndexT(IEnumerableT, Int32, FuncT, Int32) Creates an array of user-specified length from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array.
ToArrayByIndexT, TResult(IEnumerableT, FuncT, Int32, FuncT, TResult) Creates an array from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
ToArrayByIndexT, TResult(IEnumerableT, FuncT, Int32, FuncT, Int32, TResult) Creates an array from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
ToArrayByIndexT, TResult(IEnumerableT, Int32, FuncT, Int32, FuncT, TResult) Creates an array of user-specified length from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.
ToArrayByIndexT, TResult(IEnumerableT, Int32, FuncT, Int32, FuncT, Int32, TResult) Creates an array of user-specified length from an IEnumerableT where a function is used to determine the index at which an element will be placed in the array. The elements are projected into the array via an additional function.

See Also