//Return stirng representation of nullable DateTime DateTime? x = null; return x.HasValue == true ? x.Value.ToString() : "No Date";