如何在c#线程中调用ThreadStart委托实例

时间:2019-05-28 05:55:37

标签: c# multithreading

在代码中,谁负责调用ThreadStart委托实例。 表示某处正在执行Ts.Invoke()。因此,内部发生了什么。

    public class Program    
    {
        public Program()
        {
            ThreadStrat Ts = new ThreadStart(ThreadMethod);
            Thread Th = new Thread(Ts);  
            Th.Start();    
        }

        public void ThreadMethod()
        { 
            MessageBox.Show("thread called");
        }
    }

0 个答案:

没有答案