I have two Years experience in C# programming i have a question regarding thread . Is it possible to find out the work of a thread.
Ex:- In my Application running on thread A, when Thread A complete its 20% work thread B is Started and when Thread B complete their 50% work Thread C is Strated.
So i want to know How Can i Check that Thread A and B work In percentage.
this question is ask me from an interview so i don’t know exactly the Question is in the right manner regarding thread.
help me out
Shashank
Quite simply, threads A and B have to publicise how much work they’ve done somehow. This could be:
BackgroundWorkerapproach, for example, using theReportProgessmethod and theProgressChangedevent.)Of course, all of this assumes the progress can even be computed in the first place…