I want to print string in reverse format:
Input: My name is Archit Patel
Output: Patel Archit is name My
.
I've tied the following but it displays as letaP tihcrA si eman ym
.
public static string ReverseString(string s)
{
char[] arr = s.ToCharArray();
Array.Reverse(arr);
return new string(arr);
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…