Do threads by default run on more than one core?

后端 未结 4 888
醉话见心
醉话见心 2021-02-05 17:55

In multi-core processors, and windows application runs many threads. do the threads by default run on more than one core ? I mean every thread might run on individual c

4条回答
  •  情话喂你
    2021-02-05 18:37

    No, for that reason Microsoft released .NET Parallel API:

    • http://www.codeproject.com/KB/Parallel_Programming/NET4ParallelIntro.aspx

    This API has been designed just for making multi-core, parallel programming easier than before.

提交回复
热议问题