【发布时间】:2009-08-21 06:58:19
【问题描述】:
我在创建线程方面需要帮助,C# winforms
private void button1_Click(object sender, EventArgs e) {
Thread t=new Thread(new ThreadStart(Start)).Start();
}
public void Start() {
MessageBox.Show("Thread Running");
}
我不断收到这条消息:
Cannot implicitly convert type 'void' to 'System.Threading.Thread
msdn文档怎么办是不行的
【问题讨论】:
标签: c# winforms multithreading