| CurrentThreadId | Gets the current thread's managed thread ID. |
| CurrentThreadName | Gets the current thread's name, or null if unnamed. |
| IsMainThread | Returns true if currently executing on the main thread. |
| AssertIsMainThread | Throws an exception if not called from the main thread. Useful for enforcing thread safety on main-thread-only APIs. |
| AssertIsNotMainThread | Throws an exception if called from the main thread. Useful for enforcing that blocking operations don't run on the main thread. |