码迷,mamicode.com
首页 > 编程语言 > 详细

C#等待子线程执行完毕

时间:2020-05-02 18:51:05      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:static   text   action   oid   threading   int   name   sharp   reset   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace ConsloeApp1
{

    class Program
    {
        static ManualResetEvent manualRestEventA = new ManualResetEvent(false);
        static ManualResetEvent manualRestEventB = new ManualResetEvent(false);
        static void Main(string[] args)
        {


            Task taskA = new Task(new Action(() => {
                for (int i = 0; i < 100; i++)
                {
                    Console.WriteLine("*******************************************************************");

                }
                manualRestEventA.Set();
            }));

            Task taskB = new Task(new Action(() => {
                for (int i = 0; i < 1000; i++)
                {
                    Console.WriteLine("____________________________________________________________________");
                }

                manualRestEventB.Set();
            }));

            taskA.Start();
            taskB.Start();

            manualRestEventA.WaitOne();
            manualRestEventB.WaitOne();

            Console.WriteLine("Synchornolyze Done");

            Console.ReadKey();
        }
    }
}

  

C#等待子线程执行完毕

标签:static   text   action   oid   threading   int   name   sharp   reset   

原文地址:https://www.cnblogs.com/sclu/p/12818884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!