convert char arrary to string 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'};
string str = new string(char_arr);
Console.WriteLine("str = " + str);
Console.ReadLine();
}
}
}
Example 2: convert char array into string c#
char[] char_arr = {'Y','o','!'};
string str = new string(char_arr);
Example 3: 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();
}
}
}