L
L
Leondr2019-01-09 19:07:47
C++ / C#
Leondr, 2019-01-09 19:07:47

What is the correct way to convert 'char[]' to 'string[]'?

Good day, tell me why in this case Visual Studio does not give errors and the program starts correctly:
2441dcec6b425d7473f5c87793b82287.gif
Whereas Visual Studio gives me an error: cannot convert from 'char[]' to 'string[]' In the video, as I
448b3e86184249f858130e2bf8f7c975.png
understand it, VS 2015
me VS 2017

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Peter, 2019-01-09
@Leondr

Works for me.

class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Enter your name: ");
            string name = Console.ReadLine();
            char[] charArr = name.ToCharArray();

            Array.Reverse(charArr);
            string reName = string.Join("",charArr);
            Console.WriteLine(reName);
            Console.ReadKey();
        }
    }

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question