I had an interview question that asked me for my \'feedback\' on a piece of code a junior programmer wrote. They hinted there may be a problem and said it will be used heavily o
You can do this in .NET 3.5 instead:
public static string Reverse(this string s) { return new String((s.ToCharArray().Reverse()).ToArray()); }