public static void Main(string[] args)
Str= new string[]{"ABC","DEF"};
reversestring= new string[Str.Length];
reversestring[j] = stringReverseString1(Str[Length]);
Console.WriteLine("Reverse String Is {");
v=string.Join(",",reversestring);
public static string stringReverseString1 (string str)
char[] chars = str.ToCharArray();
char[] result = new char[chars.Length];
for (int i =0, j = str.Length - 1; i < str.Length; i++, j--)
return new string(result);