public static void Main()
Console.WriteLine(ReverseStringInPlace("Hello World !"));
public static string ReverseStringInPlace(string str)
char[] chars = str.ToCharArray();
for (int i = 0, j = str.Length - 1; i < j; i++, j--)
return new string(chars);