cover char array to string in c# code example
Example 1: c# char array to string
using System;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
char[] char_arr = { 'H', 'e', 'l', 'l', 'o'};
//converting char[] to string
string str = new string(char_arr);
//printing string
Console.WriteLine("str = " + str);
//hit ENTER to exit
Console.ReadLine();
}
}
}
Example 2: convert char array into string c#
char[] char_arr = {'Y','o','!'};
string str = new string(char_arr);