diff --git a/6_controlling_the_flow_of_execution.md b/6_controlling_the_flow_of_execution.md new file mode 100644 index 0000000..af003df --- /dev/null +++ b/6_controlling_the_flow_of_execution.md @@ -0,0 +1,27 @@ +# Module 6. Controlling the Flow of Execution + +## Branching with if Statements + +Reference: +* [if-else (C# Reference)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/if-else) +* [switch (C# Reference)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/switch) +* [C# guide Tutorial: Learn conditional logic with branch and loop statements](https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local) + +Keywords: +* `if/else` condition, `switch` statement +* Equality Comparison: `==`, `>=`, `<=`, `!=`, etc. +* AND `&&`, OR `||` + +## Looping with for, foreach, do, and while + +Reference: +* [C# guide Tutorial: Learn conditional logic with branch and loop statements](https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops-local) +* [C# guide Language reference: Iteration Statements](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/foreach-in) + +keywords: +* `do-while` +* `while` +* `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