Pregunta de entrevista de Microsoft

Reverse a string without using a buffer?

Respuesta de la entrevista

Anónimo

11 de may de 2015

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?