एबॉर्ट () विधि का उपयोग थ्रेड्स को नष्ट करने के लिए किया जाता है।
रनटाइम थ्रेडएबॉर्ट एक्सेप्शन को फेंककर थ्रेड को बंद कर देता है। इस अपवाद को पकड़ा नहीं जा सकता है, यदि कोई हो तो नियंत्रण को अंतिम ब्लॉक में भेज दिया जाता है।
एक थ्रेड पर एबॉर्ट () विधि का प्रयोग करें -
childThread.Abort();
उदाहरण
using System; using System.Threading; namespace MultithreadingApplication { class ThreadCreationProgram { public static void CallToChildThread() { try { Console.WriteLine("Child thread starts"); // do some work, like counting to 10 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(); //stop the main thread for some time Thread.Sleep(5000); //now abort the child Console.WriteLine("In Main: Aborting the Child thread"); childThread.Abort(); Console.ReadKey(); } } }
आउटपुट
In Main: Creating the Child thread Child thread starts 0 1 2 3 4 5 6 7 8 In Main: Aborting the Child thread Thread Abort Exception Couldn't catch the Thread Exception