Asynchronous programming design pattern

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

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条回答
  •  梦毁少年i
    2021-02-10 23:43

    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.

提交回复
热议问题