欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

.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);
            }
        }
    }

.net 5 .net 6 Thread.Abort is not supported

完美解决问题.