Multi-threading libraries for .NET

后端 未结 10 1917
长发绾君心
长发绾君心 2021-02-14 08:39

I used multiple threads in a few programs, but still don\'t feel very comfortable about it.

What multi-threading libraries for C#/.NET are out there and which advantages

10条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-14 09:30

    You don't have to use the threadpool explicitly, you can use BeginInvoke-EndInvoke if you need async calls. It uses the threadpool behind the scenes. See here: http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx

提交回复
热议问题