Getting started with multi-threaded applications in .net core 3.1

Today, we take a break from my series on sorting algorithms and look at thread-safety. As a result, we will learn about threads and create a multi-threaded program. Then, we learn about thread safety and implement it in a C# console application. What are threads? Every program I have ever written has had a single sequential flow of control. Once the program begins executing, it systematically goes through every line of code until the end....

June 30, 2020 · 5 min · 1054 words · Abhinav Pradeep