大家好
我正在将Visual Studio c ++ gui与clr一起使用
在我的表单中,当我单击按钮时添加了一个按钮 它应该调用名为“ hello world”的函数
但我希望它通过线程调用此函数
我试图那样在c#中使用线程
void hello_world()
{
}
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
Thread^ th1 = gcnew Thread(hello_world);
}
但是我在参数hello world中声明线程对象th1时出现了一行错误
还有其他方法可以使线程出错或我犯了错误吗?!
谢谢:)