摘要:
//remove duplicate strings from the string list procedure RemoveDuplicates(const stringList : TStringList) ; var buffer: TStringList; cnt: Integer; begin stringList.Sort; buffer := TStringList.Create; try buffer.Sorted := True; buffer.Duplicates := dupIgnore; //这个表示的是重复荐删除。 ... 阅读全文
posted @ 2013-04-28 23:31 勒布朗.詹姆斯 阅读(211) 评论(0) 推荐(0)
浙公网安备 33010602011771号