Difference between break and continue in c#
break in c-sharp
The break statement is used to terminate a loop(for, if, while, etc.) or a switch statement on a certain condition. After terminating, the controls will pass to the statements that are present after the break statement, if available....
saintvandora.hashnode.dev1 min read