Answers for "ternary operator for only if condition c#"

C#
1

c# ternary condition

condition ? consequent : alternative
Posted by: Guest on July-30-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

Code answers related to "ternary operator for only if condition c#"

C# Answers by Framework

Browse Popular Code Answers by Language