摘要:
你或许知道你能使用String.Trim方法去除字符串的头和尾的空格,不幸运的是. 这个Trim方法不能去除字符串中间的C#空格。 static void Main() { //demo1除去空格,提取出各个单词 string s = "a b c"; string[] word = s.Sp... 阅读全文
摘要:
foreach (object obj in lbxInsure .Items) { billInfo.lbxAppCus .Items.Add(obj); } 阅读全文