M
macrolen
Unregistered / Unconfirmed
GUEST, unregistred user!
List := TStringList.Create;List.Add('method=123');List.Add('fields=123');List.Add('q=123');List.Add('apikey=123');List.Add('format=123');List.Add('v=123');List.Add('sign_method=123');List.Add('timestamp=123'); 怎么对上面的一堆字符串按照字母顺序升序排列呢?得到:apikey=123fields=123format=123method=123q=123...