Hi All, I have a ClassA and a worker ClassB.
in my ClassA I have a method which calls the following routine
for(int idx=0;idx<10;id x++)
{
ClassB ob=new ClassB();
ThreadPool.Queu eUserWorkItem(n ew WaitCallback(ob .Exec));
}
I want to know/signal when all the Worker ClassB are done?
TIA
in my ClassA I have a method which calls the following routine
for(int idx=0;idx<10;id x++)
{
ClassB ob=new ClassB();
ThreadPool.Queu eUserWorkItem(n ew WaitCallback(ob .Exec));
}
I want to know/signal when all the Worker ClassB are done?
TIA
Comment