Answers for "simplified if statement c#"

C#
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
0

simplified if statement c#

bool c1=true, c2=true;
if(!(!c1 || c2)){
}
Posted by: Guest on September-27-2021

C# Answers by Framework

Browse Popular Code Answers by Language