Threading for methods on button click
I am calling few methods on a button click. functionA() functionB() functionC() All three functions are independent from each other and they take long time to execute. I checked and found that by threading I can run all three together which will save the execution time. As I am new to threading concept, could anyone please guide me the simplest way I can do threading in scenario or other way which will be useful in this scenario. EDIT One more problem in the same function: I am binding 5 gridviews after the three functions execution. Like this gv1.DataSource = GetData("Mill"); gv1.DataBind();