最佳答案
我们可以像这样终止 Thread
:
Thread thread = new Thread(SomeMethod);
.
.
.
thread.Abort();
但是,我可以中止一个 Task
(在.Net 4.0) ,以同样的方式,而不是取消机制