摘要: string str = "1/1/12/13/15/16/15//"; string[] strs = str.Split(new char[1] { '/' }, StringSplitOptions.RemoveEmptyEntries); List new_lst_RingSize = new List(); foreach (var s in strs) { if (!new_lst_RingSize.Contains(s)) ... 阅读全文
posted @ 2013-07-11 10:16 夜照亮了黑 阅读(1147) 评论(0) 推荐(0) 编辑