Task.ContinueWith 线程安全吗?

Is Task.ContinueWith thread safe?

我有多个线程使用 ContinueWith() 将操作排队到同一任务 它是线程安全的吗?或者我应该用一些专用锁来包裹它?

它是线程安全的。它甚至在任务已经完成时工作。