当前位置:编程学习 > C#/ASP.NET >>

取得线程

有A,B线程,
现在想关掉A,知道A的Name是"aa",要怎么取得A线程? --------------------编程问答-------------------- khjkghk --------------------编程问答-------------------- AppDomain --------------------编程问答-------------------- Thread aaThread = null;
foreach(Thread thread in System.Diagnostics.Process.GetCurrentProcess().Threads)
{
if(thread.Name.Equals("aa"))
{
aaThread = thread;
break;
}
}

if(aaThread!=null)
{
aaThread.Abort();
}
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,