CollectionExtensions
Defines typed IEnumerable extension methods.
Gets a subset of values from the provided enumerable.
Determines whether the provided collection contains the provided value.
Determines whether or not the sequence is null or empty.
Transforms a sequence of values to a comma-delimited string.
Transforms a sequence of values to a comma-delimited string, using the provided string transformation function.
public static string ToDelimitedString<T>(this IEnumerable<T> sequence, string delimiter, Func<T, string> itemStringifier)
Transforms a sequence of values to a comma-delimited string, using the provided delimiter, bound and string transformation function.
public static string ToDelimitedString<T>(this IEnumerable<T> sequence, string delimiter = ",", string bound = "", string cellFormat = "{0}")
Transforms a sequence of values to a delimited string, using the provided delimiter, bound and format string.