Answers for "shorthand if c#"

C#
4

shorthand if c#

variable = (condition) ? expressionTrue :  expressionFalse;
Posted by: Guest on June-30-2021
6

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");
Posted by: Guest on August-28-2020
5

c# inline if

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

int x = a ? b : c;
Posted by: Guest on May-27-2020
1

conditonal statements c sharp online

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

var x = condition ? 12 : (int?)null;
Posted by: Guest on September-27-2020
1

c# if statement one line

someValue = condition ? newValue : someValue;
Posted by: Guest on November-10-2020
7

c# ternary operator

is this condition true ? yes : no
Posted by: Guest on March-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language