Threads
Let's learn about threads.
What is a Thread?
Threads let us run multiple sections of code simultaneously. Threading allows the code to run on multiple processors, boosting performance.
To use threads, include the following at the top of the page:
using System.Threading; // C # 10 comes with ImplicitUsings, meaning the most popular using namespaces such as this one
...