Chars[] to string C# code example
Example 1: convert char array into string c#
char[] char_arr = {'Y','o','!'};
string str = new string(char_arr);
Example 2: c# char array to string
using System;
using System.Text;
namespace Example
{
class Program
{
static void Main(string[] args)
{
char[] char_example = { 'E', 'x', 'a', 'm', 'p', 'l', 'e' };
string charToString = new string(char_example);
Console.WriteLine(charToString);
Console.ReadLine();
}
}
}