PreviousNext

Asynchronous Programming in Web API /ASP.NET MVC

by bill-s, 2014-08-16T00:40:50.000Z

We know that from .NET 4.5 onwards, the feature of asynchronous programming has been implemented. The programming technique (with async and await keyword) is much easier than the old multi threading concept where developers need to implement multi threading on their hand. Actually the concept of multi threading performs in background but the async and await keywords have made a layer on it.

Read More