Pergunta de entrevista da empresa Microsoft

Reverse a string without using a buffer?

Resposta da entrevista

Sigiloso

11 de mai. 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?