Multithreading in C# with Win.Forms control

后端 未结 2 1216
醉梦人生
醉梦人生 2021-01-25 13:54

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

2条回答
  •  故里飘歌
    2021-01-25 14:09

    It freezes because of the Join calls. Thread.Join() makes the current thread wait after another one is complete.

提交回复
热议问题