摘要: static void Main() { //demo1 除去空格,提取出各个单词 string s = "a b c"; string[] word = s.Split(new char[] { ' ' });... 阅读全文