Subj : Concurrency Issues To : comp.programming.threads From : bernardpace Date : Thu Sep 29 2005 01:39 am Hi, I am writing a server and to make it concurrent, I am using threads. Now I have the following query: public void myMethod() { .... } main(...) { Thread t1 = new Thread(new ThreadStart(myMethod)); Thread t2 = new Thread(new ThreadStart(myMethod)); t1.Start(); t2.Start(); } Having this scenario, would the two threads calling the same method conflict with each other? If the method myMethod accesses a global variable, that would be a conflict, but in case no global variables are being accesses would their be any conflicts between the two threads? Can someone help me out Thanks in Advance .