Multithreading in C#

A comprehensive guide on how to implement multithreading in C# to make better use of CPU resources and enhance application performance by executing multiple tasks simultaneously.

This article introduces how to create and manage threads in C# using Thread and Task. We will walk through examples that help you understand how to apply multithreading in your programming projects.

C# Code

using System;
using System.Threading;
using System.Threading.Tasks;

class Program
{
    // Method running on a separate thread
    static void PrintNumbers()
    {
        for (int i = 1; i <= 5; i++)
        {
            Console.WriteLine($"Number: {i}");
            Thread.Sleep(1000); // Pause for 1 second
        }
    }

    static async Task PrintNumbersAsync()
    {
        await Task.Run(() => PrintNumbers());
    }

    static void Main(string[] args)
    {
        Console.WriteLine("Starting multithreading...");

        // Create a new thread
        Thread thread = new Thread(PrintNumbers);
        thread.Start();

        // Use Task for asynchronous processing
        Task task = PrintNumbersAsync();
        
        // Wait for the thread to finish
        thread.Join();
        task.Wait();

        Console.WriteLine("Processing completed.");
    }
}

Detailed explanation:

  1. PrintNumbers(): A method that runs on a separate thread, printing numbers from 1 to 5 with a 1-second pause between each print.
  2. PrintNumbersAsync(): An asynchronous method using Task.Run to execute PrintNumbers.
  3. Main():
    • Creates a new Thread and starts executing PrintNumbers.
    • Uses Task to run PrintNumbersAsync.
    • thread.Join(): Waits until the thread completes.
    • task.Wait(): Waits for the Task to complete.

System Requirements:

  • C# 7.0 or newer
  • .NET Core 2.1 or .NET Framework 4.5 and above

How to install the libraries needed to run the C# code above:

Install the .NET Core SDK from https://dotnet.microsoft.com/download.

Tips:

  • Prefer using Task and async/await for easier thread management.
  • Avoid creating too many simultaneous threads as it may degrade performance.


Related

How to DELETE data from a MySQL database using C#

A guide on how to use Prepared Statements in C# to delete data from a table in a MySQL database safely and effectively using multiple parameters.
How to open Notepad using C#

A guide on how to open the Notepad application using C# via the `Process` class in .NET. This tutorial helps C# developers understand how to interact with external applications using simple code.
Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.
Create a Simple Chat Application Using Socket.IO in C#

A detailed guide on how to create a simple chat application using Socket.IO in C#, helping you understand real-time communication and build interactive applications.
How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.
How to POST Data to an API using C#

A guide on how to send data to an API using the POST method in C# with the HttpClient class, enabling you to easily interact with APIs.
JSON Web Token Authentication with C#

A guide on how to implement JSON Web Token (JWT) authentication in C#. This article will show how to create, sign, and validate JWTs to secure APIs and authenticate users.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
How to INSERT data into a MySQL database using C#

A guide on how to use Prepared Statements in C# to insert data into a table in a MySQL database safely and effectively.
How to GET JSON data from an API using C#

A guide on how to retrieve JSON data from an API using C#, leveraging the HttpClient class and Newtonsoft.Json library for processing data.

main.add_cart_success