How do I convert this into C# 6 Null Conditional Check?
var durationhours = product.ProductAudioAsset.TotalLengthInSeconds != null
? (short?)TimeSpan.FromSeconds(product.ProductAudioAsset.TotalLengthInSeconds.Value).TotalHours
: null;
where TotalLengthInSeconds is nullable short
short? Stay withdouble- it's more precise and faster.