kCura.Utility.Array
Provides access to static methods for operating over arrays.
public Array()
Transforms a csv string to an Int32 array.
Transforms a csv string to an Int64 array.
Removes duplicate entries from the provided integer array.
Removes duplicate entries from the provided string array.
Removes duplicate entries from the provided array.
Extracts an object array from the specified column of the provided data table.
Extracts a string array from the specified column of the provided data table.
Transforms a comma-delimited string of integers to XML.
E.g. "1, 2, 3" -> 123
Transforms an array of integers to XML.
E.g. {1, 2, 3} -> 123
Transforms a string array to CSV for use with SQL statements.
E.g. { "alpha", "beta", "gamma" } -> "'alpha','beta','gamma'"
Transforms a sequence of values to a comma-delimited string.