Answers for "C# syntax question mark"

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

c# question mark

FileInfo fi = ...; // fi could be null
long? length = fi?.Length; // If fi is null, length will be null
Posted by: Guest on September-05-2020

Code answers related to "C# syntax question mark"

C# Answers by Framework

Browse Popular Code Answers by Language