Skip to main content

One post tagged with "Async Code"

Information related to the asynchronous code

View All Tags

Getting started with multithreading code

· 7 min read

Modern applications perform several tasks at a time, and using only one thread would significantly slow down the system. In many applications, this would often mean that only one user could perform an action at a time. Luckily, in .NET we can easily utilize several threads and make our applications more robust.