Suppose I have something like that;
Thread hilo = new Thread(NuevoHilo);
hilo.Start();
But the method NuevoHilo
has a parameter of type string.
private void NuevoHilo(string item)
{
}
How can I load parameters?
Thanks