C# – Task Parallel Library
In C#, there is a feature called Task Parallel Library that was introduced in .NET 4.0 and is useful for handling asynchronous calls. Let’s create a new C# Windows Forms application. Windows forms apps are good to demo this as they can get locked up with long running synchronous calls: Add a button to the Win Form: Let’s say we want to simulate some long running code. We will use … Continue reading C# – Task Parallel Library