kCura.Utility.Extensions.Enumerable
Provides access to extension methods over IEnumerable(of T).
Indicates whether or not the sequence is null or empty.
Transforms the sequence to an ArrayList. Used for backwards compatibility.
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.
Transforms a sequence of values to a comma-delimited string, using the items' ToString() method.
Transforms a sequence of values to a comma-delimited string, using the provided format string for each item's ToString() method.
public static string ToDelimitedString<T>(IEnumerable<T> input, string delimiter, Func<T, string> itemStringifier)
Transforms a sequence of values to a delimited string, using the provided delimiter, bound and string transformation function.
public static string ToDelimitedString<T>(IEnumerable<T> input, string delimiter = ",", string bound = "", string cellFormat = "{0}")
Transforms a sequence of values to a delimited string, using the provided delimiter, bound and format string.
public static string ToDelimitedString(ArrayList arrayList, string delimiter = ",", string bound = "", string cellFormat = "{0}")
Transforms a sequence of values to a delimited string, using the provided delimiter and bound.