The breakpoint will not currently be hit. No symbols have been loaded

后端 未结 9 1429
你的背包
你的背包 2021-01-04 10:18

I am struggling with breakPoint issue in VS 2012 for more than hours. I am from eclipse background, there I never heard about such issues.

Problem :<

9条回答
  •  温柔的废话
    2021-01-04 11:05

    Actually there is "Modules" option, but it's enabled only when you are in debug mode. You can just press Ctrl+D,M combination when you're in debug. In few words, PDB is a file that contains all debug information about your assebmly, you can not debug an assembly without this file. Assembly is a file that contains precompiled code for exetuion via CLR. Could you provide a bit more information about your problem. What kind of application you are trying to debug for example? Also, if you have located you pdb files made EXACTLY for your assembly, you can load it by right-clicking your assembly in modules window and selecting Load Symbols From > Symbol Path

提交回复
热议问题