You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
557 B
C#

/*
* C# Program to Display the Name of the Current Thread
*/
using System;
using System.Threading;
namespace threading
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Current information");
Thread t = Thread.CurrentThread;
t.Name = "primarythread";
Console.WriteLine("Thread Name: {0}", t.Name);
Console.WriteLine("Thread Status: {0}", t.IsAlive);
Console.ReadKey();
}
}
}
/*
Current information
Thread Name: primarythread
Thread Status: True