I was developing with VB.NET and it feels so natural to exit a loop using the “break” statement, but unfortunately VB.NET doesn’t have the “break” statement. “Continue” still works as it’s meant to be but in order to have a C equivalent of “break” in VB.NET, you will have to use the “exit” statement.
Leave a Reply