I read about Async and Await keywords in C # 5.0, which allow you to perform parallel tasks simultaneously. (this is what I understood).
Is this practice useful for web applications?
Here we have AJAX methods that allow you to perform tasks without blocking the user interface (browser).
Should they be used only for asynchronous web services?
Can you give me an example of why / how to use async / await keywords in web applications? (to take advantage of these features)
source
share