What does “external code” in the call stack mean?

前端 未结 6 1640
梦毁少年i
梦毁少年i 2021-02-02 08:13

I call a method in Visual Studio and attempt to debug it by going over the call stack.

Some of the rows in it are marked \"External code\".

What exactly does thi

6条回答
  •  花落未央
    2021-02-02 08:32

    Those lines are not referenced by the debug symbols that you currently have loaded.

    This code may be part of an external DLL, or native code inside the CLR. If you know which module it is, and have debug symbols for them, you can load them into Visual Studio manually.

提交回复
热议问题