using System; using System.Linq; static class ReverseString { public static void Main() { string text = "!uoy htiw eb ecrof eht yaM"; Console.WriteLine(string.Join("", text.Reverse())); } }
using System; using System.Linq; static class ReverseString { public static void Main() { string text = "!uoy htiw eb ecrof eht yaM"; Console.WriteLine(string.Join("", text.Reverse())); } }