Possible Duplicate:
Why use “new DelegateType(Delegate)”?
Just wanted to know the difference between Thread thread1 = new Thread(new ThreadStart(ThreadFunction));
and
Thread thread1 = new Thread(ThreadFunction);
? Any ideas please???
Edited: When i invoke the same thread function using two threads then is the function is working as a copy for one thread or the both threads use the same function?