在 Delphi 中,我有一个类并将此类的实例存储在一个列表中,使用以下代码:
type
TMyClass = class
public
name: String;
old: Integer;
anx: boolean;
end;
...
function x(aList: TList): String;
var
aObj: TMyClass;
i: Integer;
begin
for i:= 1 to aList.Count do
begin
aObj := aList[i-1];
end;
end;
我怎样才能在 C# 中做到这一点?
我的班级将如何获得TList
?以及如何TList
在 C# 中编写等价物?