static class StringExtensions { public static string Reverse(this string metin) { return new string(metin.ToCharArray().Reverse().ToArray()); } }