What .NET 4.5 (or earlier) higher-level constructs make Threading easier?

前端 未结 4 1488
借酒劲吻你
借酒劲吻你 2021-02-19 23:33

Delegates are a few of the objects that make threading easier in .NET reference. They can be used to asynchronously invoke a method. What other objects exist in framework 4.5 (o

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-20 00:12

    Without a doubt, getting to grips with the new Tpl DataFlow library (included in .net 4.5) will give you the biggest boost in terms of concurrent development.

    If you're serious about highly concurrent apps, spend a day or two familiarizing yourself with DataFlow. It's seriously good.

提交回复
热议问题