How to convert string to string[]? [closed]

string[] is an array (vector) of strings
string is just a string (a list/array of characters)

Depending on how you want to convert this, the canonical answer could be:

string[] -> string

return String.Join(" ", myStringArray);

string -> string[]

return new []{ myString };

Leave a Comment