string array to char array 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);

Example 3: c# string to character array

string chars = "Array";
char[] letters = chars.toCharArray();