vote up 4 vote down star

Guess I have just never run across it before.

What is the proper way to turn a char[] into a string?

The ToString() method from an array of chars doesn't do the trick. Guess I had always imagined that was what it was for.

flag

68% accept rate

5 Answers

vote up 28 vote down check
char[] chars = {'a', ' ', 's', 't', 'r', 'i', 'n', 'g'};
string s = new string(chars);
link|flag
vote up 7 vote down

Use the constructor of string which accepts a char[]

char[] c = ...;
string s = new string(c);
link|flag
vote up 4 vote down
char[] characters;
...
string s = new string(characters);
link|flag
vote up 2 vote down

String mystring = new String(mychararray);

link|flag
vote up 0 vote down

Isn't there a String constructor that takes a char array?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.