Answers for "c# dot question mark"

C#
0

c# dot question mark

FileInfo fi = ...; // fi could be null
long? length = fi?.Length; // If fi is null, length will be null
Posted by: Guest on February-11-2021

Code answers related to "c# dot question mark"

C# Answers by Framework

Browse Popular Code Answers by Language