这个问题不是关于版本与调试,即优化.关于具有.pdb文件的性能影响.每次抛出异常时,是否读取.pdb文件?加载程序集时,信息是否以某种方式缓存?还是第一次缓存相关的异常?它有多大的区别?
解决方法
That might be true on other operating systems,but not Windows. If you think they do,then why does Microsoft build every single product they ship with PDB files turned on for both debug and release builds? They wrote the compiler,they wrote the linker,and they wrote the operating system so they know exactly what the effects are. Microsoft has more people focused on performance than any other software company in the world. If there were any performance impact at all,they wouldn’t do it. Period. Performance isn’t the only thing at Microsoft,it’s everything.
另外:
When built /optimize+ and a /debug switch,a DebuggingMode.IgnoreSequencePoints is passed to the DebuggableAttribute to tell the JIT compiler that it doesn’t need to load the PDB file in order to correctly JIT the IL.
他还有另一篇题为PDB Files: What Every Developer Must Know的文章也是一个很好的阅读.