I have a project where I need to start 30 times a thread that will execute the same method, and wanted to do this in a repeat command, for example:
for (int i = 0; i < 30; i++)
{
Thread t = new Thread(MetodoVoid);
t.Start();
System.Threading.Thread.Sleep(1000);
}
But when I use this it says that the thread is already running and the error, how to proceed?