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.
|
|
|
|
|
|
|
|
||
|
|
|
|
Use the constructor of string which accepts a char[]
|
||
|
|
|
|
|
||
|
|
|
|
String mystring = new String(mychararray); |
||
|
|
|
|
Isn't there a String constructor that takes a char array? |
||
|
|