Click or drag to resize

ToArrayByIndexExtension Methods

Methods
  NameDescription
Public methodStatic memberToArrayByIndex<T>(IEnumerable<T>, Func<T, Int32>)
Creates an array from an IEnumerable<T> where a function is used to determine the index at which an element will be placed in the array.
Public methodStatic memberToArrayByIndex<T>(IEnumerable<T>, Int32, Func<T, Int32>)
Creates an array of user-specified length from an IEnumerable<T> where a function is used to determine the index at which an element will be placed in the array.
Public methodStatic memberToArrayByIndex<T, TResult>(IEnumerable<T>, Func<T, Int32>, Func<T, TResult>)
Creates an array from an IEnumerable<T> 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 memberToArrayByIndex<T, TResult>(IEnumerable<T>, Func<T, Int32>, Func<T, Int32, TResult>)
Creates an array from an IEnumerable<T> 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 memberToArrayByIndex<T, TResult>(IEnumerable<T>, Int32, Func<T, Int32>, Func<T, TResult>)
Creates an array of user-specified length from an IEnumerable<T> 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 memberToArrayByIndex<T, TResult>(IEnumerable<T>, Int32, Func<T, Int32>, Func<T, Int32, TResult>)
Creates an array of user-specified length from an IEnumerable<T> 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