Ok, this is a dumb thing that I\'m sure I\'ve done dozens of times but for some reason I can\'t find it.
I have an array... And want to get a string with the content
You can find the method in the String class.
Example using Split and Join:
public static void Main() {
string str = "on two three, four five six.";
char[] separators = {' ', '.', ',' };
// Split the string:
string[] parts = str.Split(separators);
string allTogether = String.Join(" | ", parts);
Console.WriteLine("Joined: ");
Console.WriteLine(allTogether);
}