어떻게 이것을 C# 6 Null 조건부 검사로 변환합니까? TotalLengthInSeconds 짧은 널 (NULL) var durationhours = product.ProductAudioAsset.TotalLengthInSeconds != null
? (short?)TimeSpan.FromSeconds(product.ProductAudioAss
저는 특히 null 전파에주의를 기울이고 있습니다. 이는 bool?과 bool 반환 방법을 사용하기 때문에 발생합니다. public static bool IsAttributedWith<TAttribute>(this JsonProperty property)
where TAttribute : Attribute
{
return property
C# 6.0의 새로운 (제안 된) 기능 중 일부가 해결 된 흥미로운 사이트를 발견했습니다. 여기에서 읽을 수 있습니다 : Probable C# 6.0 features. 흥미로운 것은 모나드 널 검사 (null 전파 연산자 ?라고도 함)입니다.이 if (points != null)
{
var next = points.FirstOrDefault();