设置调试
public class CompilingService---> CompilerParameters cp = new CompilerParameters();
添加如下两句
cp.IncludeDebugInformation = true;
cp.CompilerOptions = " /debug:pdbonly ";
设置 cp.GenerateInMemory = false;
策略代码在addLink 中启动
设置启动程序为qd
即可添加断点调试 (注意调试需要重新编译生成,因此每次调试前需要改动原有代码断点才能生效)