Hi, I'm playing with xamarin (and it absolutely ROCKS) but I can't start a new thread using "the old" way.
public void Run()
{
Thread thread = new Thread(ThreadMethod);
thread.Start();
}
public void ThreadMethod()
{
Debug.WriteLine("Hello from thread");
}
If I try and do something like the above I'm told Thread doesn't have a constructor that takes 1 parameter.
Am I missing something here? Any help appreciated.
Cheers,
NN.