ArrayExtension
Provides access to extension methods on instances of IEnumerable(of T).
Splits the provided enumerable into smaller chunks
Splits a string into an enumerable of integers, using the provided separator character.
Splits a string into an enumerable of strings, using the provided separator character.
Gets a subset of values from the provided enumerable.
Converts an IEnumerable(of T) to a comma separated list of values, with an 'and' before the last term.
E.g. 1 item in enumerable -> First
E.g. 2 items in enumerable -> First and Second
E.g. 3+ items in enumerable -> First, Second, and Third.