Answer the question
In order to leave comments, you need to log in
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:
Whereas Visual Studio gives me an error: cannot convert from 'char[]' to 'string[]' In the video, as
I
understand it, VS 2015
me VS 2017
Answer the question
In order to leave comments, you need to log in
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 questionAsk a Question
731 491 924 answers to any question