Check out example codes for "c# null conditional". It will help you in understanding the concepts better.
Code Example 1
//the null coalescing operator for c# is ??
int? x = null;
int y = 9;
return x ?? y;
//Will return the value of x if x is not null else return y
Code Example 2
//Return stirng representation of nullable DateTime
DateTime? x = null;
return x.HasValue == true ? x.Value.ToString() : "No Date";
Learn ReactJs, React Native from akashmittal.com