Section 3.16: 클래스 멤버 연산자들: Null 조건부 요소 액세스

var letters = null; char? letter = letters?[1]; Console.WriteLine("Second Letter is {0}",letter); // 위 예제에서 letters 가 null 이라는 이유로 인해 에러를 throw 하는 대신, // letter 에 null 값이 대입 (assign) 되게 된다
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

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

반응형

+ Recent posts