Languages
[Edit]
EN

C# / .NET - get current thread name

13 points
Created by:
Marcino
720

In C# / .NET it is possible to get current thread name in following way.

Thread.Name property example

using System;
using System.Threading;

public static class Program
{
	private static void Execute()
	{
		string name = Thread.CurrentThread.Name;

		Console.WriteLine("Current thread name is " + name);
	}

	public static void Main(string[] args)
	{
		Thread thread = new Thread(Execute);

		thread.Name = "MyThread";
		thread.Start();
	}
}

Output:

Current thread name is MyThread

References

  1. Thread.Name Property - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

C# - Thread Class

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join