内容目录
In C#, Parallel
and Task.WhenAll
are both used for parallel computing.
Parallel
is generally used only for CPU-bound operations.
Refer to this link for more information.
Task.WhenAll
is primarily used for high IO concurrency.
文章评论