摘要:
//TStringList 常用方法与属性:var List: TStringList; i: Integer;begin List := TStringList.Create; List.Add('Strings1'); {添加} List.Add('Strings2'); List.Exchange(0,1); {置换} List.Insert(0,'Strings3'); {插入} i :=...
阅读全文
posted @ 2010-04-27 12:32
天蓝-
阅读(263)
推荐(0)
编辑