示例#1
0
 public ILDecompiler(ILDecompilerSettings langSettings)
     : this(langSettings, true)
 {
 }
示例#2
0
 public ILDecompiler(ILDecompilerSettings langSettings, bool detectControlStructure)
 {
     this.langSettings           = langSettings;
     this.detectControlStructure = detectControlStructure;
 }
示例#3
0
 DecompilerSettingsServiceImpl(DecompilerSettingsImpl decompilerSettings, ILSettingsImpl ilSettings)
 {
     CSharpVBDecompilerSettings = new CSharpVBDecompilerSettings(decompilerSettings);
     ILDecompilerSettings       = new ILDecompilerSettings(ilSettings);
 }