개발하다 보면 null reference exception이 자주 뜬다. 그래서 아래와 같이 null 체크하는 코드를 많이 볼 수 있다. 하지만 변수에 ? 조건 연산자를 쓰면 코드가 더 간결해진다. private void Update() { if (m_Target == null || Application.isPlaying == false) return; RotateCamera(); CheckWall(); CheckMeshRenderer(); } 예제 코드 출처 https://www.csharpstudy.com/CS6/CSharp-null-conditional-operator.aspx C# 6.0 널 조건 연산자 - C# 프로그래밍 배우기 (Learn C# Programming) 널 조건 연산자 (Null..