string and char array

JaedenRuiner

Well-known member
Joined
Aug 13, 2007
Messages
340
Programming Experience
10+
Okay,

String.ToCharArray()
seems very helpful, but wait, there seems to be some fine print:
HOw do you go from CharArray() back to a string?

String.JOin() doesn't work, it wants an array of strings.
ARray.ToString() doesn't work the result is "String.Char []" not the combination of the individual characters in sequence. And there seems to be no String.FromCharArray()

Now this just idiotic to have it go one way but not both.
 
String.Concat(theCharArray)
 
Back
Top