I\'m trying to figure out what I\'m doing wrong here, but I can\'t seem to. I have this method that takes in a string and reverses it. However, when I print out the reversed str
Calling ToString on a T array in .NET will always return "T[]". You want to use this instead: new string(reversedString).
ToString
T
"T[]"
new string(reversedString)