Possible Duplicate:
Application Crashes With “Internal Error In The .NET Runtime”
We have a complex C# (.NET 4) Windows Service that runs 24x7. It's not unusual for the Windows service to throw an exception (such as when a database call times out). We catch all these exceptions properly using try/catch blocks. It should not be possible for an unhandled exception to bring our service down.
Every once in a while, usually when a SQL Server 2008 database call times out, our try/catch code will handle it properly, but the service will get shut down with the following error written to the Event Log:
Application: MyApp.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an internal error in the .NET
Runtime at IP 6F637CB5 (6F590000) with exit code 80131506.
Does anyone have any idea what causes this error?