Can you tell me an easy way to make a string from array of string?
I have:
String line = \"how are you\"; string[] split = line.Split(new Char[] { \'
Use this:
string.Join(" ", split);