コード例 #1
0
ファイル: ILDecompiler.cs プロジェクト: wagnerhsu/tools-dnSpy
 public ILDecompiler(ILDecompilerSettings langSettings)
     : this(langSettings, true)
 {
 }
コード例 #2
0
ファイル: ILDecompiler.cs プロジェクト: wagnerhsu/tools-dnSpy
 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);
 }