Hello
Thank you for posting in Microsoft Community forum.
It seems like you’re dealing with a crash dump analysis. The error message indicates that the symbols for ntdll.wrong.symbols.dll are incorrect. This can happen if the symbol files (.pdb files) are not correctly loaded or are outdated.
The debug text suggests a possible solution: You can run .symfix; .reload in your debugger to fix the symbol path and load symbols.
The exception code 80131623 typically indicates a managed debugging assistant ‘CallbackOnCollectedDelegate’ has detected a problem (a delegate was garbage collected while a callback was still active).
Please note that this is a general interpretation of the error message. The actual issue might be different based on the specifics of your application and environment. It’s recommended to look into the specific modules and code where the crash is happening for a more accurate diagnosis. If you have the source code, you might want to check the parts of the code that interact with ntdll.wrong.symbols.dll.
Remember, always make sure your debugging tools and symbol files are up-to-date to avoid such issues.
Best Regards,
Wesley Li