If I have a
public void Method(int m) { ... }
how can I create a thread to this method?
Thread t = new Thread((Me
please try:
Thread t = new Thread(new ThreadStart(method)); t.Start();