Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了两种并行调用两种方法的方法,它们是
Parallel.Invoke(new Action[]())
和
Task.WaitAll(new Task[]())
任何机构都可以帮助了解它们之间的区别吗?
这两种方法在内部都适用于线程池。这两者之间有不同的意见,我个人更喜欢 Parallel.Invoke() 来并行运行动作并在完成后等待它们。