If there is any multithreaded c# utility is there, i have bit poor knowledge about this concept. but what if following situation encounters?
Out of running 1000 of thread ,If one or more threads get failed during its execution ,then what is the plan to recover this or is there any way to restart it from its current state when i get failed ?
If there is any multithreaded c# utility is there, i have bit poor knowledge
Share
Your question is pretty unclear, but a here few thoughts:
ThreadPoolor Task Parallel Library.Application.ThreadExceptionto handle the situation by e.g. showing some kind of sorry-message to the user before closing your application.