I get runtime error when I run the application Thread ^readThread = gcnew Thread(gcnew System::Threading::ThreadStart(this, &PipeServer::Read)); readThread->IsBackground = true; readThread->Start(client); The Error is: The thread was created with a ThreadStart delegate that does not accept a parameter Please help me to solve it, Thanks in advance. Regards, Rupendra
Thread->Start() does not take any parameters. See the examples at this link http://msdn.microsoft.com/en-us/library/system.threading.threadstart.aspx