与 Process Explorer 的 TID 相对应的 System.Threading.Thread 的 attribute/property/field 是什么?

What's the attribute/property/field of a System.Threading.Thread which corresponds with Process Explorer's TID?

我目前正在尝试查看我在 C# 应用程序中创建的线程发生了什么。该线程的类型为 System.Threading.Thread 并嵌入到一个内部对象中(我在调试时可以访问该对象中的线程)。

我正在检查应用程序,使用“Process Explorer”。
Process Explorer 有一个“Threads”选项卡,其中包含“TID”、“CPU”、“Cycles Delta”、“Suspend Count”和“Start Address”列。
为了识别我启动的线程(在调试器中),我相信我可以寻找 TID(线程 ID)或起始地址,我认为线程 ID 最清楚。

但是,乍一看,我在 System.Threading.Thread class 中没有看到任何 property/field/attribute,这看起来像线程 ID。

有人知道 System.Threading.Thread 中的哪个 attribute/property/field 对应于 Process Explorer 的 TID 列吗?

编辑: 似乎有一个 ManagedThreadId 但事实并非如此。

本质上,托管线程不是本机线程,在任务管理器[=28=中寻找相关性] 不会合适。有关详细信息,请参阅 CLR Threading Overview - Managed vs. Native Threads

Managed code executes on "managed threads," which are distinct from the native threads provided by the operating system. A native thread is a thread of execution of native code on a physical machine; a managed thread is a virtual thread of execution on the CLR's virtual machine.

...

但是,如果您使用的是 Visual studio,则可以使用 线程 Window 来调试托管线程。

View threads in the Visual Studio debugger by using the Threads window (C#, Visual Basic, C++)

Several Visual Studio user interface elements help you debug multithreaded apps. This article introduces multithreaded debugging features in the code editor window, Debug Location toolbar, and Threads window

Walkthrough: Debug a multithreaded app using the Threads window (C#, Visual Basic, C++

Visual Studio provides several tools and user interface elements to help you debug multithreaded applications. This tutorial shows how to use thread markers, the Parallel Stacks window, the Parallel Watch window, conditional breakpoints, and filter breakpoints. Completing this tutorial will familiarize you with Visual Studio features for debugging multithreaded applications.