码迷,mamicode.com
首页 > 编程语言 > 详细

C# 当前程序所有线程

时间:2014-07-14 22:31:10      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:os   cti   re   c   ar   c#   

using System.Linq;

var threads = System.Diagnostics.Process.GetCurrentProcess().Threads;
var count = threads.Count;
var actived = threads.Cast<ProcessThread>().Where(t => t.ThreadState == System.Diagnostics.ThreadState.Running).ToList();
              

C# 当前程序所有线程,布布扣,bubuko.com

C# 当前程序所有线程

标签:os   cti   re   c   ar   c#   

原文地址:http://www.cnblogs.com/smartsensor/p/3842320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!