In C# when deubgging threads for example, you can see each thread's ID. But I couldn't find a way to get that same thread, programmatically. And I couldn't even get the id of the current thread (in the properties of the Thread.currentThread). So I wonder how does Visual Studio get the ids of the threads, and if there's a way to get the handle of the thread with id 2345 for example?
|
|
GetThreadId returns the ID of a given native thread. There's ways to make it work with managed threads, I'm sure, all you need to find is the thread handle and pass it to that function. GetCurrentThreadId returns the ID of the current thread. |
||||
|
|
|
This should get you the current thread id.
To get a thread by it's ID, you can try a bit of linq
|
||
|
|
|
|
You can use the deprecated This method is marked as deprecated because the .NET Thread object does not correspond to a single Windows thread, and as such there is no stable ID which can be returned by Windows for a given .NET thread. See configurator's answer for more reasons why this is the case. |
||
|
|
|
|
According to MSDN:
So basically, the |
||
|
|
|
|
From managed code you have access to instances of the The ID displayed by Visual Studio is actually the OS thread ID. This is not the same as the managed thread ID as suggested by several replies. The |
||||||||||
|
|
|
To find the current thread Id use - `Thread.CurrentThread.ManagedThreadId'. But in this case you might need the current win32 thread id - use pInvoke to get it with this function:
First you'll need to save the managed thread id and win32 thread id connection - use a dictionary that maps a win32 id to managed thread. Then to find a thread by it's id iterate over the process's thread using Process.GetCurrentProcess().Threads and find the thread with that id:
|
||||||
|
|
|
|
|||
|
|
|
To get the OS ID use:
|
||||||||||||||||
|
