Static functions for the string class.
Static functions for the string class.
string string::Join(const string[]&in arr, const string&in delimiter)
Join an array of strings into a single where each item is separated using the given delimiter.
string string string::Repeat(const string&in str, int count)
Repeats a the given string count times.
string