Section 38.2: Nullable 타입 변수가 값을 가지고 있는지 확인하기
int? i = null;
if (i != null)
{
Console.WriteLine("i is not null");
}
else
{
Console.WriteLine("i is null");
}
아래 예제 역시 동일하게 동작한다:
if (i.HasValue)
{
Console.WriteLine("i is not null");
}
else
{
Console.WriteLine("i is null");
}
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
38.4: 기본 값을 지정하여 Nullable 타입이 가지고 있는 값 가져오기 (0) | 2022.01.26 |
---|---|
38.3: Nullable 타입이 가지고 있는 값 얻어오기 (0) | 2022.01.21 |
38.1: Nullable 타입 변수 초기화하기 (0) | 2022.01.20 |
37.8: 명시적 숫자 (numeric) 변환 (0) | 2022.01.19 |
37.7: 묵시적 타입 변환 (Implicit Casting) (0) | 2022.01.13 |