异步委托

作者:追风剑情 发布于:2016-6-29 11:05 分类:C#

委托异步执行

示例一

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace DelegateTest
  7. {
  8. public delegate string MyDelegate(object data);
  9.  
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. MyDelegate mydelegate = new MyDelegate(TestMethod);
  15. IAsyncResult result = mydelegate.BeginInvoke("Thread Param", TestCallback, "Callback Param");
  16.  
  17. //异步执行完成
  18. string resultstr = mydelegate.EndInvoke(result);
  19. Console.WriteLine("resultstr=" + resultstr);
  20.  
  21. Console.Read();
  22. }
  23.  
  24. //线程函数
  25. public static string TestMethod(object data)
  26. {
  27. string datastr = data as string;
  28. return datastr;
  29. }
  30.  
  31. //异步回调函数
  32. public static void TestCallback(IAsyncResult data)
  33. {
  34. Console.WriteLine(data.AsyncState);
  35. }
  36. }
  37. }

 

运行测试

111111.png

 

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号