Jason
0
Q:

c# multi threading example

// C# program to illustrate the 
// concept of multithreading 
using System; 
using System.Threading; 
  
public class GFG { 
  
    // static method one 
    public static void method1() 
    { 
  
        // It prints numbers from 0 to 10 
        for (int I = 0; I <= 10; I++) { 
            Console.WriteLine("Method1 is : {0}", I); 
  
            // When the value of I is equal to 5 then 
            // this method sleeps for 6 seconds 
            if (I == 5) { 
                Thread.Sleep(6000); 
            } 
        } 
    } 
  
    // static method two 
    public static void method2() 
    { 
        // It prints numbers from 0 to 10 
        for (int J = 0; J <= 10; J++) { 
            Console.WriteLine("Method2 is : {0}", J); 
        } 
    } 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Creating and initializing threads 
        Thread thr1 = new Thread(method1); 
        Thread thr2 = new Thread(method2); 
        thr1.Start(); 
        thr2.Start(); 
    } 
} 
1
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(2000);
         
         //now abort the child
         Console.WriteLine("In Main: Aborting the Child thread");
         
         childThread.Abort();
         Console.ReadKey();
      }
   }
}
0

New to Communities?

Join the community