This looks a bit nicer ...
**Note**: you have to use the array var, cause Array.Reverse returns a void.
This approach should be faster than using a StringBuilder cause its done natively (will update with stats).
public string Reverse(string text)
{
// this was posted by petebob as well
char[] array = text.ToCharArray();
Array.Reverse(array);
return new String(array);
}