这是我的场景。
void SecondThread
{
//more code
}
private: System::Void Button_Click(System::Object^ sender, System::EventArgs^ e)
{
//where I click my button event
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&SecondThread, 0, 0, NULL);
}
如您所见,我正在尝试使用指向 .NET 函数中的非托管函数的指针。它给出了这个错误。
“指向成员的指针对托管类无效。”
有谁知道我怎样才能摆脱它?另外,我对启动线程不感兴趣,因为我需要使用非托管代码:
*ThreadStart myThreadDelegate = new ThreadStart(this, repeat); trd->开始();
谢谢,非常感谢。