Event viewer shows .NET runtime error

0

while testing our main software (written in C++), the app crashed.

Looking at the event viewer, a .NET Runtime error occured at the crashing time. The .NET Runtime error may be from a Visual C++ (Managed C++) bridge we use to implement some C# assembly functionalities.

Now, the error says the following:

Application: OurProduct.exe
Frameworkversion: v4.0.30319 (we are using .NET Framework 4.0 in C++/CLI)
Description: The process was terminated due to an unhandled exception.
Exceptioninformation: Exceptioncode c0000005, Exceptionaddress 000000006315BFE3
Stack:
EventId: 1026

I am not sure how to deal with this issue. It doesn't give me any information. Any help?

T.N.

Posted 2019-05-13T06:18:13.880

Reputation: 1

1Unless there is a stack trace, the information is not helpful. Use the debugger or add logging if that doesn’t work out. – Daniel B – 2019-05-13T06:26:11.227

That was what I thought. Thanks a lot @Daniel B – T.N. – 2019-05-13T06:48:58.407

@DanielB one question though. Since I receiver a .NET Exception, does this mean it has to be a error that occurred in my C++/CLI layer? – T.N. – 2019-05-13T07:02:40.300

I think it could also be something like a SEH exception that occurred in code called from .NET. I’m not very familiar with C++/CLI unfortunately. – Daniel B – 2019-05-13T07:16:45.630

No answers