Sunday 3 December 2017

C# Program to Assign Name to Thread by using Name Property


Code:

using System;
using System.Threading;
class Name
{
    static void Main()
    { 
        if (Thread.CurrentThread.Name == null)
        {
            Thread.CurrentThread.Name = "Main";
            Console.Write("Thread has been Named ");
        }
        else
        {
            Console.WriteLine("Unable to name a previously " +
                "named thread.");
        }
        Console.ReadLine();
    }
}


Output:

Thread has been Named


More C# Programs:





















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...