线程操作

Thread thread=new Thread(new ThreadStart(m_Thread));
thread.Start();
void m_Thread()
{
    MessageBox.Show("Hello World!");
}
原文地址:https://www.cnblogs.com/772933011qq/p/6001316.html