-1
프로그램을 정지시키는 이러한 오류를 처리 할 수 없습니다.Visual Studio에서 예외 처리
어떻게 처리할까요? 이 내 디버거 출력 :
A first chance exception of type 'System.IO.IOException' occurred in System.dll
A first chance exception of type 'System.InvalidOperationException' occurred in System.dll
A first chance exception of type 'System.InvalidCastException' occurred in Microsoft.VisualBasic.dll
A first chance exception of type 'System.TimeoutException' occurred in System.dll
A first chance exception of type 'System.IO.IOException' occurred in System.dll
내가
Try
Dim str As String = SerialPort.ReadLine()
Catch ex As Exception
MsgBox(ex)
End Try
하지만 여전히 프로그램 동결을 사용!
이는 처음 예외이며 무시해야합니다. 그들은 당신의 프로그램이 멈추게하지 않습니다. –
읽을 내용이 없으면 어떻게 될까요? –
첫 번째 기회 예외 알림 수신 (http://msdn.microsoft.com/en-us/library/dd997368%28v=vs.110%29.aspx)하지만 John 그들은 당신의 프로그램이 멈추는 원인이되지 않는다고 말한다. SerialPort가 제대로 초기화되지 않은 것 같다. – vzamanillo