Is it possible to recognize a thread is a worker or an I/O.
I know the code
Thread.CurrentThread.IsThreadPoolThread
this code is to show whether it is a thread pool thread, but it seems no method to show if it's a worker thread.
How can I check it? Is it possible?