Reverse a string without using a buffer?
Anoniem
I'm assuming they would be asking this of you while you are not using C#. In C#, strings are immutable objects, so they can't be edited. Instead, you'll HAVE to use a buffer (either a new string or maintain a character array. Perhaps I am mistaken?