c# conditional statements code example
Example 1: if statement conditions c#
int myVar = 0;
if (myVar > 3)
{
//do code
}
Example 2: conditional if statement c# programming
is this condition true ? yes : no
Example 3: c# ternary
// ---------------- Syntax of Ternary Operators ----------------- //
string stateOfMatter;
int temperature = 23;
// ---- For just one condition ---- //
stateOfMatter = temperature < 0 ? "Solid": "Liquid";
// If temperature is below zero, then stateOfMatter is solid, otherwise
// it will be liquid
// ---- For more conditions ---- //
stateOfMatter = temperature < 0 ? "Solid" : (temperature > 100 ? "Gas" : "Liquid");