I\'m beginner in C#. And i have problem with threads when i using win.forms. My application freezes. What the problem with this code? I\'m using microsoft example from msdn. Her
It freezes because of the Join calls. Thread.Join() makes the current thread wait after another one is complete.