Reverse of a string Get link Facebook X Pinterest Email Other Apps June 26, 2021 string str="this is it"; for(int i=str.Length-1;i>-1;i--) { Console.WriteLine(str[i]); } Read more