5,930
社区成员
发帖
与我相关
我的任务
分享
type
PFileBody=^TFileBody;
TFileBody=record
Name:string;
end;
var
Test:TStrings;
A: PFileBody;
begin
Test:=TStringList.Create;
New(A);
A.Name := 'TestData';
Test.AddObject('1',TObject(A));
end;