Async
-
.NET
Documentation regarding the Asynchronous Programming Model (APM) and the Event-based Asynchronous Pattern (EAP)
The Asynchronous Programming Model (APM) and the Event-based Asynchronous Pattern (EAP) are marked as legacy by Microsoft. The new pattern…
Read More » -
.NET
Beware of big Task Parallel Library Operations
Take a look at the following code: class Program{ static void Main() { var list = Enumerable.Range(0, 10 * 1000).ToList();…
Read More »