Click or drag to resize

ToArrayByIndexExtension Class

ToArrayByIndex extension.
Inheritance Hierarchy
SystemObject
  MoreLinq.ExtensionsToArrayByIndexExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.2.0+5205ea241d72b079436060d330cd5c2eae7cdcdf
Syntax
public static class ToArrayByIndexExtension
Methods
  NameDescription
Public methodStatic memberToArrayByIndexT(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.
Public methodStatic memberToArrayByIndexT(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.
Public methodStatic memberToArrayByIndexT, 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.
Public methodStatic memberToArrayByIndexT, 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.
Public methodStatic memberToArrayByIndexT, 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.
Public methodStatic memberToArrayByIndexT, 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.
Top
See Also