Hello,
I have a problem. I am learning how to use threads.
I was writing an example of code but there's something wrong.
class Program
{
public delegate void ThreadStart();
void MN()
{
Thread th = new Thread(ThreadStart(CodiceSecondario)); //CS1955
}
void CodiceSecondario()
{
//Do something
}
}
I didn't undersrand the error.
Thanks in advance