From d768f89a75767e7013ab017464127b221eddc2c2 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Fri, 19 Feb 2021 14:23:13 +1100 Subject: [PATCH] Finished Jumping with break and continue --- 6_controlling_the_flow_of_execution.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/6_controlling_the_flow_of_execution.md b/6_controlling_the_flow_of_execution.md index af003df..c85797e 100644 --- a/6_controlling_the_flow_of_execution.md +++ b/6_controlling_the_flow_of_execution.md @@ -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` interface -`foreach` is most clear, concise, highly recommended. `for` statement is for low level control \ No newline at end of file +`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. \ No newline at end of file