If I have a
public void Method(int m) { ... }
how can I create a thread to this method?
Thread t = new Thread((Me
Method needs to take an object not an int to be able to use the ParameterizedThreadStart delegate.
So change m to an object and cast it to an int first off.