my .net service application started crash occasionally. Once investigate in windows event viewer, I get the below message:
Application: myapp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.IO.IOException at System.IO.__Error.WinIOError(Int32, System.String) at System.IO.__Error.WinIOError() at System.Threading.EventWaitHandle.Set() at System.IO.FileStreamAsyncResult.AsyncFSCallback(UInt32, UInt32, System.Threading.NativeOverlapped*) at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32, UInt32, System.Threading.NativeOverlapped*)
From the error message, I'm not sure which part of my source code is giving me this error. Do you guys know what error is this?
And is it that because I didn't put a try/catch block on some of my code that's why it will have this error and crashes my app?