可能重复: How to tell if .net app was compiled in DEBUG or RELEASE mode?
简单的问题;有没有简单的方法来检查.net 1.1程序集是否经过调试编译?
这取决于你想怎么检查。如果要在实际运行时签入代码,如果代码处于调试模式,则可以使用:
Debug.Assert(MyFunction())
使用该代码,myFunction将只在其所在的dll以调试模式编译时运行。