View Problem

Reverse the characters in a string

Given the string "reverse me", produce the string "em esrever"
ExpandDiskEdit
csharp 3.0
var str = "reverse me";
Console.WriteLine(new String(str.Reverse().ToArray()));

Submit a new solution for csharp
There are 25 other solutions in additional languages (clojure, cpp, erlang, fantom ...)