Answers for "convert char array into string c#"

C#
8

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();
        }
    }
}
Posted by: Guest on March-06-2020
4

convert char array into string c#

char[] char_arr = {'Y','o','!'};
string str = new string(char_arr);
Posted by: Guest on November-24-2020
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();
        }
    }
}
Posted by: Guest on November-05-2020

Code answers related to "convert char array into string c#"

C# Answers by Framework

Browse Popular Code Answers by Language