.net 5 .net 6 Thread.Abort is not supported
程序员文章站
2022-03-09 19:11:44
...
.net 5 ++ 版本 不支持 Thread.Abort
所以,采用另外一种方案
class Program
{
static void Main(string[] args)
{
var thread = new Thread(Test);
thread.Start();
SpinWait.SpinUntil(() => false, 5 * 1000);
thread.Interrupt();
Console.WriteLine("Hello World!");
Console.ReadLine();
}
static void Test()
{
try
{
int i = 0;
while (true)
{
Thread.Sleep(1000);
Console.WriteLine(i++);
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
完美解决问题.
上一篇: Outlook开之前保存的邮件怎么打开?
下一篇: 百度音乐网页版怎么下载歌曲详细图文教程