异步方法

作者:追风剑情 发布于:2015-9-17 21:34 分类:C#

示例一:

开发工具 Visual Studio 2012

.NET Framework 4.5

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace AsyncTest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Main-1");
  14. DoSomethingAsync();
  15. Console.WriteLine("Main-2");
  16.  
  17. Console.Read();
  18. }
  19.  
  20. static async Task DoSomethingAsync()
  21. {
  22. int val = 13;
  23. Console.WriteLine("val="+val);
  24. //异步方式等待1秒
  25. await Task.Delay(TimeSpan.FromSeconds(1));
  26.  
  27. val *= 2;
  28. //异步方式等待1秒
  29. await Task.Delay(TimeSpan.FromSeconds(1));
  30.  
  31. Console.WriteLine("val=" + val);
  32. }
  33. }
  34. }

运行效果

11111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号