How can I get a Tasks assigned Thread

109 Views Asked by At

How can I get a Task's assigned Thread, when it is running in c#? I would like to get the thread of the task for debugging. I tried modify Task class, but Microsoft solved it without it.

2

There are 2 best solutions below

0
On

Along with the other answer, if you are using VS, add a name to the task and thread. This really helps and shows up in the VS debugger. Debug -> Windows -> Threads, then all running threads will show up there. Same as locals, you can add a watch on a thread, along with many other things.

0
On

Same way you get the managed thread id for any given method. Simply:

Thread.CurrentThread.ManagedThreadId;