Reverse a String .NET
How to reverse a string demo. *you need to know this if you want a job at Microsoft.
public string someMethod(string, input)
{
char[] chars = input.ToCharArray();
Array.Reverse(chars);
return new string(chars);
}
Go ahead and cheat. its ok.