I have a very large loop that loops a 1000 rows. I exit the loop if magic value 1 is found. If magic value 1 is not found but magic value 2 is found then the loop needs to skip to the beginning. Right now I am using a switch, some ifs and a goto. I have read that goto is not the best way. Is there a better way to make this work?
|
|
|||||||||||||
|
|
|
To exit a loop you can use the break statement, to go onto the next record you can use the continue statement.
I AM NOT CONDONING THE USE OF THE GOTO STATEMENT I AM SIMPLY POINTING OUT A POSSIBLE USE CASE You can use goto jump statement to start/exit a loop, however I would stay away from this option unless you are using nested looping. I think the goto statement still has its uses for optimizing, exiting cleanly ect.. but in general it is best to use it quite sparingly.
|
||||||||||||||||
|
|
|
How about this:
If by "skip to the beginning" you mean "skip this record and process the next one," replace |
||||||||||
|
|
|
A
|
||
|
|
|
|
I can't comment yet ( 1 rep point away) but wouldn't this be better:
and I'm not sure by whats meant by "restart the search". |
||||||
|
|
|
I'm taking #2 case to mean that you want to not perform (i.e. skip) the loop body in the #2 case and not that you want to reset the loop to 0. (See the code comments if I've got that backward.) This suggestion may be controversial because of the less conventional condition in the for loop could be said to be low on the self-documenting scale, but if that doesn't bother you, a concise way of writing what I think you you want is:
|
||
|
|
|
|
Just note that if you set the counter back to 0 if MagicValue is 2, and your code never changes the values, you are probably going to be in an infinite loop. |
||
|
|
|
|
A more complex could be: We define 2 Extension Methods.
Now you can do this:
hope this helps! |
||||
|
