Answers for "c# ternary operator"

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
1

c# ternary operator

/* In C#, if condition is true, the first expression is evaluated and becomes 
   the result; if false, the second expression is evaluated and becomes 
   the result. */
// The syntax of ternary operator is:
Condition ? Expression1 : Expression2;

// Here is a simple example:
string color = "blue";
string result = (color == "blue") ? "blue" : "NOT blue";
Console.WriteLine(result);


// Here is a really good diagram of the ternary operator:
// https://www.codebuns.com/wp-content/uploads/2018/09/ternary-operator.png


// The normal if else statment is the same as the ternary operator.
// If else statement:
if (number % 2 == 0)
{
	isEven = true;
}
else
{
	isEven = false;
}
// Ternary operator:
isEven = (number % 2 == 0) ? true : false ;


// Another example use of the ternary operator:
class Ternary
{
	public static void Main(string[] args)
	{
		int number = 2;
		bool isEven;

		isEven = (number % 2 == 0) ? true : false ;  
		Console.WriteLine(isEven);
	}
} // OUTPUT: True
Posted by: Guest on July-24-2021
7

c# ternary operator

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

c# ternary operator

double sinc(double x) => x != 0.0 ? Math.Sin(x) / x : 1;

Console.WriteLine(sinc(0.1));
Console.WriteLine(sinc(0.0));
// Output:
// 0.998334166468282
// 1
Posted by: Guest on March-24-2020
1

c# ternary operator

static void Sample(string input)
{
    string result = input == null ? "default" : input;
    Console.WriteLine($"Result: {result}");
}
Posted by: Guest on July-17-2021
0

c# ternary operator

c# ternary operation
Posted by: Guest on October-13-2021

C# Answers by Framework

Browse Popular Code Answers by Language