System.NullReferenceException
-
c# Error - NullReferenceExceptionC# 2022. 1. 24. 15:04
NullReferenceException was unhandled by user code An exception of type 'System.NullReferenceException' occurred in FleckWebsocketServer.exe but was not handled in user code Additional information: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 디버깅 도중 이런 오류가 떴다. 이유는 간단했다. if문에서 저 runLoop 변수를 초기화 해주지 않은 상태에서 값을 비교했었다. if(runLoop == null || runLoop.Status == TaskStatus.RanToCompletion) { MessageBox.Show("loop 실행"); ..