“Continue” (to next iteration) on VBScript
Your suggestion would work, but using a Do loop might be a little more readable. This is actually an idiom in C – instead of using a goto, you can have a do { } while (0) loop with a break statement if you want to bail out of the construct early. Dim i For … Read more