C# Tutorial For Beginners: Conditions and If Statements
Updated: Jan 18, 2022
As we saw in previous lessons, C# supports all the logical conditions (Equal, less than, etc.) that we can use to perform different code actions based on other decisions. C# supports the following conditions statements:

The if Statement
Use the ‘if’ statement to specify a code block to be executed if a condition is ‘True.’

And here is another example of nested if:

The Else Statement
Use the ‘else’ statement to specify a block of code to be executed if the ‘if’ condition is ‘False.’

The Else if Statement
Use the ‘Else If’ statement to specify a new condition if previous conditions are ‘false.’
