码迷,mamicode.com
首页 > Windows程序 > 详细

C# Async Await

时间:2017-08-20 18:34:34      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:wait   c#   blog   current   top   read   pre   logs   run   

        #region Async、Await
        static void Async()
        {
            Async1();
            Thread.Sleep(1200);
            Console.WriteLine("Main Stop,Thread Id:" + Thread.CurrentThread.ManagedThreadId);
        }
        static async void Async1()
        {
            await Task.Run(() =>
            {
                Thread.Sleep(1000);
                Console.WriteLine("Async Stop,Thread Id:" + Thread.CurrentThread.ManagedThreadId);
            });
        }
        #endregion    

 

C# Async Await

标签:wait   c#   blog   current   top   read   pre   logs   run   

原文地址:http://www.cnblogs.com/zxxxx/p/7400495.html

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