Section 38.5: Nullable 타입의 기본값은 null 이다

public class NullableTypesExample { static int ? _testValue; public static void Main() { if (_testValue == null) Console.WriteLine("null"); else Console.WriteLine(_testValue.ToString()); } }

출력결과:

null
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/CSharpBook/

반응형

+ Recent posts