摘要:
private ArrayList RemoveSame(ArrayList list){for (int i = 0; i < list.Count - 1; i++){for (int j = i + 1; j < list.Count; j++){if (list[i].Equals(list[j])){list.RemoveAt(j);j--;}}}return list;} 阅读全文
posted @ 2013-08-29 13:49
的的
阅读(692)
评论(0)
推荐(0)
浙公网安备 33010602011771号