programming-examples/c-sharp/Games_&_Threads/C# Program to Obtain Status of the Current Thread.cs

27 lines
554 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* C# Program to Obtain Status 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