Abort() method is used for destroying threads. - CSharp Thread Asynchronous

CSharp examples for Thread Asynchronous:Thread

Description

Abort() method is used for destroying threads.

using System;
using System.Threading;

   class ThreadCreationProgram {

      public static void CallToChildThread() {

         try {
            Console.WriteLine("Child thread starts");
            for (int counter = 0; counter <= 10; counter++) {
               Thread.Sleep(500);
               Console.WriteLine(counter);
            }

            Console.WriteLine("Child Thread Completed");
         } catch (ThreadAbortException e) {
            Console.WriteLine("Thread Abort Exception");
         } finally {
            Console.WriteLine("Couldn't catch the Thread Exception");
         }
      }

      static void Main(string[] args) {
         ThreadStart childref = new ThreadStart(CallToChildThread);
         Console.WriteLine("In Main: Creating the Child thread");
         Thread childThread = new Thread(childref);
         childThread.Start();

         Thread.Sleep(2000);

         Console.WriteLine("In Main: Aborting the Child thread");
         childThread.Abort();
   }
}

Related Tutorials