string to character array c# code example

Example 1: string to char array c#

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

Example 2: 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 3: c# string to character array

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