how to convert char into string in c# code example
Example 1: cast char[] to string c#
text = new string(characters);
Example 2: covert char[] to string C#
text = characters.ToString();
text = new string(characters);
text = characters.ToString();