Does async and await increase performance of an ASP.Net application

前端 未结 5 1312
梦如初夏
梦如初夏 2020-12-11 15:31

I recently read an article about c#-5 and new & nice asynchronous programming features . I see it works greate in windows application. The question came to

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-11 16:01

    No. These are purely syntactic sugar and make your job as a programmer easier by allowing writing simple code and read code simply when you fix the bugs.

    It does allow simpler approach to loading data without blocking UI, so in a way yes, but not really.

提交回复
热议问题