Why does the char array method “ToString” returns a promt System.Char instead of reversed string?

Because it’s an array of (something), and arrays don’t override the ToString method with specialized behaviour that would require knowledge of the contained type.

You could instead:

var someString = new String(someCharArray);

Leave a Comment