Geekswithblogs (edition)
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.
public string someMethod(string, input)
{
char[] chars = input.ToCharArray();
Array.Reverse(chars);
return new string(chars);
}
Go ahead and cheat. its ok.
Powered by: Skin design by Mark Wagner, Adapted by David Vidmar Copyright © mikedopp