shorthand if c# code example

Example 1: 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");

Example 2: c# if statement one line

someValue = condition ? newValue : someValue;

Example 3: conditonal statements c sharp online

var rand = new Random();
var condition = rand.NextDouble() > 0.5;

var x = condition ? 12 : (int?)null;

Example 4: c# inline if

(condition ? [true value] : [false value])

int x = a ? b : c;

Example 5: c# ternary operator

is this condition true ? yes : no

Tags:

Java Example