本文介绍了如何在可视C#中获取线程ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI FRINDS!
我想知道如何获取ID线程?(不是控制台模式,视觉模式)+ _ +谢谢您

HI FRINDS!
I want to know how can i get the ID thread ?(not the console mode,the visual mode) +_+ thank you

推荐答案


int threadId = System.Threading.Thread.CurrentThread.ManagedThreadId;



如果您使用的是所有线程所在的当前进程ID.



If you what the current process id where all your threads lives.

int processId = System.Diagnostics.GetCurrentProcess().Id;



这篇关于如何在可视C#中获取线程ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 05:18