hi all
i try to send data into Thread function - the data is : string[][] DataTimes
but i get eror!!!
this my function that Start the Thread:
Thread newThread = new Thread(Form1.PlayTheClock);
newThread.Start(DataTimes);
that the Thread Function:
public static void PlayTheClock(string[][] DataTimes)
{
......
}
the problem is : Error 1 The best overloaded method match for 'System.Threading.Thread.Thread(System.Threading.ParameterizedThreadStart)' has some invalid arguments
thanks...