Short
C# 6.0 | ~ | C# 7.0 in Visual Studio 2017 |
---|---|---|
if (inspection != null && inspection.LastModifiedBy.HasValue) | ~ | if(inspection?.LastModifiedBy != null) |
C# 6.0 | ~ | C# 7.0 in Visual Studio 2017 |
---|---|---|
if (inspection != null && inspection.LastModifiedBy.HasValue) | ~ | if(inspection?.LastModifiedBy != null) |