A Thread class is responsible for creating and managing a thread in multi-thread programming. It provides a property known as ManagedThreadId to check the unique identifier for the current managed thread. Or in other words, the value of ManagedThreadId property of a thread defines uniquely that thread within its process. The value of the ManagedThreadId property does not vary according to time.
Syntax:
public int ManagedThreadId { get; }
Return Value: This property returns a value that indicates a unique identifier for this managed thread. The return type of this property is System.Int32.
Example 1:
using System;
using System.Threading;
public class GFG {
static public void Main()
{
Thread T;
T = Thread.CurrentThread;
Console.WriteLine( "The unique id of the main " +
"thread is: {0} " , T.ManagedThreadId);
}
}
|
Output:
The unique id of the main thread is: 1
Example 2:
using System;
using System.Threading;
public class GFG {
public static void Main()
{
Thread thr1 = new Thread( new ThreadStart(job));
Thread thr2 = new Thread( new ThreadStart(job));
Thread thr3 = new Thread( new ThreadStart(job));
Console.WriteLine( "ManagedThreadId of thread 1 " +
"is: {0}" , thr1.ManagedThreadId);
Console.WriteLine( "ManagedThreadId of thread 2 " +
"is: {0}" , thr2.ManagedThreadId);
Console.WriteLine( "ManagedThreadId of thread 3 " +
"is: {0}" , thr3.ManagedThreadId);
thr1.Start();
thr2.Start();
thr3.Start();
}
public static void job()
{
Thread.Sleep(2000);
}
}
|
Output:
ManagedThreadId of thread 1 is: 3
ManagedThreadId of thread 2 is: 4
ManagedThreadId of thread 3 is: 5
Reference: