Introduction of C# (part 2/2)
If/Else
Conditions and If Statements
C# supports the usual logical conditions from mathematics:
Less than: a < b
Less than or equal to: a <= b
Greater than: a > b
Greater than or equal to: a >= b
Equal to: a == b
Not Equal to: a != b
You can ...
leoneilodrunia.hashnode.dev8 min read