I need C# equivalent to Java’s continue ?
i have
for (String b : bar) {
<label>
try {
}
catch (EndpointNotFoundException ex) {
continue <label>
}
}
how can i simulate this in C#. i need that when i get exception that i repeat code not go on.