ProcessThreadCollection 构造函数

定义

初始化 ProcessThreadCollection 类的新实例。

重载

ProcessThreadCollection()

在没有关联的 ProcessThread 实例的情况下,初始化 ProcessThreadCollection 类的新实例。

ProcessThreadCollection(ProcessThread[])

使用指定的 ProcessThread 实例数组初始化 ProcessThreadCollection 类的新实例。

ProcessThreadCollection()

Source:
ProcessThreadCollection.cs
Source:
ProcessThreadCollection.cs
Source:
ProcessThreadCollection.cs

在没有关联的 ProcessThread 实例的情况下,初始化 ProcessThreadCollection 类的新实例。

protected:
 ProcessThreadCollection();
protected ProcessThreadCollection ();
Protected Sub New ()

适用于

ProcessThreadCollection(ProcessThread[])

Source:
ProcessThreadCollection.cs
Source:
ProcessThreadCollection.cs
Source:
ProcessThreadCollection.cs

使用指定的 ProcessThread 实例数组初始化 ProcessThreadCollection 类的新实例。

public:
 ProcessThreadCollection(cli::array <System::Diagnostics::ProcessThread ^> ^ processThreads);
public ProcessThreadCollection (System.Diagnostics.ProcessThread[] processThreads);
new System.Diagnostics.ProcessThreadCollection : System.Diagnostics.ProcessThread[] -> System.Diagnostics.ProcessThreadCollection
Public Sub New (processThreads As ProcessThread())

参数

processThreads
ProcessThread[]

用来初始化此 ProcessThreadCollection 实例的 ProcessThread 实例数组。

适用于