什么是Delphi等效的C#通用列表

时间:2013-12-22 23:02:44

标签: delphi com

我们如何在Delphi中翻译这个c#代码行。 ?

List<InputMonitor> m_inputMonitors = new List<InputMonitor>();

1 个答案:

答案 0 :(得分:2)

那不是C ++。它可能是C#或Java。我们假设它是C#。代码只是实例化一个专用的containter类的新实例。 Delphi中的等价类是TList<TInputMonitor>

翻译是:

uses
  Generics.Collections;
....
var
  InputMonitors: TList<TInputMonitor>;
....
InputMonitors := TList<TInputMonitor>.Create;
....