Lets say, Here is an array of strings in c#:
string[] array = new string[] { "one", "two", "three" };
Is there any way to convert this string array into a string like this:
"one,two,three"
And after converting into this string, how will I get back the previous array of strings, I mean how will I convert the string into an array of strings again?
string[] array = new string[] { "one", "two", "three" };