Finished Looping with for, foreach, do, while; repo at 93db36a

Jason Zhu 2021-02-19 14:16:05 +11:00
parent 3ab92d488f
commit 070ca90dda

@ -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<T>` interface
`foreach` is most clear, concise, highly recommended. `for` statement is for low level control