C# Reverse Loop Ang String

string ret = "mart";
for (int i = ret.Length - 1; i >= 0; i--) {
  MsgBox.Information(ret[i].ToString());
}