字符串顺序(倒序)
呵呵,大家来写个简单的
------解决方案--------------------这样算不算:
string s = "这是一个测试 ";
char[] cs = s.ToCharArray();
Array.Reverse(cs);
s = new string(cs);
System.Console.WriteLine(s);
---
输出为:
试测个一是这
------解决方案--------------------string s = "这是一个测试 ";
char[] cs = s.ToCharArray();
Array.Reverse(cs);
s = new string(cs);
System.Console.WriteLine(s);
------解决方案--------------------char[] cs = s.ToCharArray();
Array.Reverse(cs);
s = new string(cs);
这应就是简单的答案了