Answers for "how to turn a character array into a string"

1

how to turn a character array into a string

char [] exampleCharArray = {'a', 'b', 'c'};
string exampleString = new string(exampleCharArray);
Posted by: Guest on April-18-2021

Code answers related to "how to turn a character array into a string"

Browse Popular Code Answers by Language