Asynchronous programming design pattern

后端 未结 4 1906
失恋的感觉
失恋的感觉 2021-02-10 23:29

I\'m working on a little technical framework for CF.NET and my question is, how should I code the asynchronous part? Read many things on MSDN but isn\'t clear for me.

So

4条回答
  •  [愿得一人]
    2021-02-10 23:55

    You don't need to do anything special, cause the caller should call you method async,

    He define a new delegate pointing to you method, and use the .net to call your method asynchronously.

提交回复
热议问题