.net 5 .net 6 Thread.Abort is not supported
.net 5 ++ 版本 不支持 Thread.Abort所以,采用另外一种方案 class Program { static void Main(string[] args) { var thread = new Thread(Test); thread.Start(); SpinWait.SpinUntil(() => false, 5 * 1000); .