Parallel programming in C#

前端 未结 3 1317
北恋
北恋 2020-12-29 10:13

I\'m interested in learning about parallel programming in C#.NET (not like everything there is to know, but the basics and maybe some good-practices), therefore I\'ve decide

3条回答
  •  孤城傲影
    2020-12-29 10:44

    There are few a options:

    • Parallel LINQ: Running Queries On Multi-Core Processors

    • Task Parallel Library (TPL): Optimize Managed Code For Multi-Core Machines

    • If you are interested in basic threading primitives and concepts: Threading in C#

    [But as @John Knoeller pointed out, the example you gave is likely to be sequential I/O bound]

提交回复
热议问题