获取线程列表

我想列出所有正在运行的线程,但不要使用List<>该类。我想动态观察正在运行的线程。我怎样才能做到这一点?

回答:

using System.Diagnostics;

ProcessThreadCollection currentThreads = Process.GetCurrentProcess().Threads;

foreach (ProcessThread thread in currentThreads)

{

// Do whatever you need

}

以上是 获取线程列表 的全部内容, 来源链接: utcz.com/qa/410876.html

回到顶部