Finished Jumping with break and continue

Jason Zhu 2021-02-19 14:23:13 +11:00
parent 070ca90dda
commit d768f89a75

@ -24,4 +24,15 @@ keywords:
* `for`
* `foreach` for each element in an instance of the type that implements the `System.Collections.IEnumerable` or `System.Collections.Generic.IEnumerable<T>` interface
`foreach` is most clear, concise, highly recommended. `for` statement is for low level control
`foreach` is most clear, concise, highly recommended. `for` statement is for low level control
## Jumping with break and continue
Reference:
* [break (C# Reference)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/break)
* The `break` statement terminates the closest **enclosing loop** or **switch statement** in which it appears. Control is passed to the statement that follows the terminated statement, if any.
* [continue (C# Reference)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/continue)
* The `continue` statement passes control to the **next iteration** of the enclosing while, do, for, or foreach statement in which it appears.
* [goto (C# Reference)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/goto)
* Very rare to use. Nobody use it.
* The `goto` statement transfers the program control directly to a labeled statement. A common use of goto is to transfer control to a specific switch-case label or the default label in a switch statement.