Hello is this possible in c#:
If I have a loop say:
int x = 0;
for (int i = 0; i < 1000000; i++) {
x++;
}
And it takes more than 1 second to complete, is it possible to kill the code and move on?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, if you have the loop running in a different thread, you can abort that thread from a different thread. This would effectively kill the code you’re running, and would work fine in the simplified example you’ve given. The following code demonstrates how you might do this:
However, as you can see from Eric Lippert’s comment (and others), aborting a thread is not very graceful (a.k.a. “pure evil”). If you were to have important things happening inside this loop, you could end up with data in an unstable state by forcing the thread abortion in the middle of the loop. So it is possible, but whether you want to use this approach will depend on what exactly you’re doing in the loop.
So a better option would be to have your loops voluntarily decide to exit when they’re told to (Updated 2015/11/5 to use newer TPL classes):
This gives
GetFooAsyncan opportunity to catch on to the fact that it’s supposed to exit soon, and make sure it gets into a stable state before giving up the ghost.