C# code very slow with debugger attached; MemoryMappedFile's fault?

后端 未结 2 1969
傲寒
傲寒 2021-02-06 01:25

I have a client/server app. The server component runs, uses WCF in a \'remoting\' fashion (binary formatter, session objects).

If I start the server component and launc

2条回答
  •  粉色の甜心
    2021-02-06 01:37

    Exceptions can notably impact the performance of an application. There are two types of exceptions: 1st chance exceptions (the one gracefully handled with a try/catch block), and unhandled exceptions (that will eventually crash the application).

    By default, the debugger does not show 1st chance exceptions, it just shows unhandled exceptions. And by default, it also shows only exceptions occurring in your code. However, even if it does not show them, it still handles them, so its performance may be impacted (especially in load tests, or big loop runs).

    To enable 1st chance exceptions display in Visual Studio, click on "Debug | Exceptions" to invoke the Exceptions dialog, and check "Thrown" on the "Common language runtime" section (you can be more specific and choose wich 1st chance exception you want to see).

    To enable 1st chance exceptions display originating from anywhere in the application, not just from your code, click on "Tools | Options | Debugging | General" and disable the "Enable Just My Code" option.

    And for these specific "forensics mode" cases, I also strongly recommend to enable .NET Framework Source Stepping (it requires "Enable Just My Code" to be disabled). It's very useful to understand what's going on, sometimes just looking at the call stack is very inspiring - and helpful especially in the case of cosmic radiation mixup :-)

    Two related interesting articles:

    • How to debug crashes and hangs
    • Configuring Visual Studio to Debug .NET Framework Source Code

提交回复
热议问题