Tlist类,居然没有removeat这个方法remove这个方法有。。
  别说是我拼写错误我还不至于。。
var
 studentList:Tlist<string>;
begin
    studentlist:=tlist<string>.Create();
    studentList.add('a');
    studentList.add('b');
    studentList.add('c');
   // studentList.remove('a');//这个可以
    //studentList.removeAt(1);//这个不行
end;  这他丫的怎么回事啊?