Home » C# Threading Example

C# Threading Example

by Online Tutorials Library

C# Threading Example: static method

We can call static and non-static methods on the execution of the thread. To call the static and non-static methods, you need to pass method name in the constructor of ThreadStart class. For static method, we don’t need to create the instance of the class. You can refer it by the name of class.

Output:

The output of the above program can be anything because there is context switching between the threads.

0 1 2 3 4 5 0 1 2 3 4 5 6 7 8 9 6 7 8 9 

C# Threading Example: non-static method

For non-static method, you need to create instance of the class so that you can refer it in the constructor of ThreadStart class.

Output:

Like above program output, the output of this program can be anything because there is context switching between the threads.

0 1 2 3 4 5 0 1 2 3 4 5 6 7 8 9 6 7 8 9 

C# Threading Example: performing different tasks on each thread

Let’s see an example where we are executing different methods on each thread.

Output:

task one task two 
Next TopicC# Thread Sleep

You may also like