C# Threading Example: Join() method

It causes all the calling threads to wait until the current thread (joined thread) is terminated or completes its task.

Output:

0
1
2
3
4
0
0
1
1
2
2
3
3
4
4
Next TopicC# Thread Name