- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Getting the unique identifier for the current managed thread in C#
To get the unique identifier for the currently managed thread, the code is as follows −
Example
using System; using System.Threading; public class Demo { public static void Main(){ Thread thread = new Thread(new ThreadStart(demo1)); ThreadPool.QueueUserWorkItem(new WaitCallback(demo2)); Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId); } public static void demo1(){ Thread.Sleep(2000); } public static void demo2(object stateInfo){ Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread); } }
Output
This will produce the following output −
ManagedThreadId = 3 Thread belongs to managed thread pool? = True
Example
Let us now see another example −
using System; using System.Threading; public class Demo { public static void Main(){ Thread thread = new Thread(new ThreadStart(demo)); Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId); thread.Start(); } public static void demo(){ Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread); } }
Output
This will produce the following output −
ManagedThreadId = 3 Thread belongs to managed thread pool? = False
- Related Articles
- Organizationally Unique Identifier
- Check if a thread belongs to managed thread pool or not in C#
- Getting the type of the current instance in C#
- How to display the name of the Current Thread in C#?
- How to obtain Status of the Current Thread in C#?
- How to find the Current Context id of the Thread in C#?
- Fetching the name of the current thread in Java
- Get current thread in Java
- C# Program to Check status of Current Thread
- C# Program to display name of Current Thread
- __func__ identifier in C
- How to check current state of a thread in C#?
- Getting current time in Python
- Getting an enumerator for the entire ArrayList in C#?
- Predefined Identifier __func__ in C

Advertisements