I studied how I can change the execution behavior of a C # method, especially when an exception is thrown for support:
Repeat / continue: to repeat the same expression again and continue with Skip / Resume: move to the next statement and continue with execution
I read a lot of answers that this is bad coding practice, but this is for a code converter that converts millions of lines of code from a language that supports this functionality. I need this to be functionally consistent.
c # error-handling code-conversion
Johnb
source share