B
bombgod
Unregistered / Unconfirmed
GUEST, unregistred user!
TBodyTest = class
private
fBodyTestIDList: array of string;
public
property BodyTestIDList: array of string read fBodyTestIDList;
end;
这个类的语法是有错误的。
我想把fBodyTestIDList这个私有的字符串数组字段公布为属性,请问该怎样写这个语法?
谢谢!
private
fBodyTestIDList: array of string;
public
property BodyTestIDList: array of string read fBodyTestIDList;
end;
这个类的语法是有错误的。
我想把fBodyTestIDList这个私有的字符串数组字段公布为属性,请问该怎样写这个语法?
谢谢!