摘要: class Program { static void Main(string[] args) { RevertStr(); Console.Read(); } public static void RevertStr() { string str = "I_am_a_student"; string newStr = ""; string[] str1 = str.Split('_'); ... 阅读全文
posted @ 2012-10-23 18:51 威少 阅读(211) 评论(0) 推荐(0) 编辑