Exemple #1
0
        static void Main(string[] args)
        {
            MyThread t1 = new MyThread("Thread 1");
            MyThread t2 = new MyThread("Thread 2");

            t1.startThread();
            t2.startThread();

            Console.Read();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            MyThread t1 = new MyThread("Thread 1");
            MyThread t2 = new MyThread("Thread 2");
            MyThread t3 = new MyThread("Thread 3");

            t1.startThread();
            t2.startThread();
            t3.startThread();
        }
Exemple #3
0
        static void Main(string[] args)
        {
            MyThread t1 = new MyThread("Thread 1");//create an incstance if the class MyThread
            MyThread t2 = new MyThread("Thread 2");
            MyThread t3 = new MyThread("Thread 3");

            t1.startThread();//call the function startThread to start a thread
            t2.startThread();
            t3.startThread();
            Console.ReadKey();
        }