使用单声道为Android VS中如何调试?单声道、Android、VS

2023-09-04 05:09:34 作者:绵延的偏执

看来,如果我把一个断点的地方在我的Visual Studio中它不会做任何事情,如果我编译我在调试模式下的应用程序。 (如code从来没有达到这一点,尽管它实际上)。有另一种方式进行调试与单?(使用VS IDE)

It seems that if I put a breakpoint somewhere in my Visual Studio it doesn't do anything if I compile my app in Debug mode. (like the code never reaches that point although it actually does). Is there another way for debugging with Mono?(using VS IDE)

我在做什么错,为什么我不能调试?

What am I doing wrong, why can't I debug?

推荐答案

我敢打赌,你就必须做的符号。断点将被忽略,如果符号不能由Visual Studio据我所知,Visual Studio中只读取PDB文件,而单有它自己的格式来理解。现在,我想你可以生成PDB文件,单声道,但有你选中的符号都OK?

I bet you it has to do with symbols. Breakpoints will be ignored if symbols cannot be understood by Visual Studio and to my knowledge Visual Studio only reads PDB files while Mono has it's own format. Now, I think you can produce PDB files with Mono but have you checked that the symbols are OK?