public ILSettings CopyTo(ILSettings other) { other.ShowILComments = this.ShowILComments; other.ShowXmlDocumentation = this.ShowXmlDocumentation; other.ShowTokenAndRvaComments = this.ShowTokenAndRvaComments; other.ShowILBytes = this.ShowILBytes; other.SortMembers = this.SortMembers; return(other); }
public ILDecompilerSettings(ILSettings ilSettings = null) { this.ilSettings = ilSettings ?? new ILSettings(); options = CreateOptions().ToArray(); }
public ILSettings CopyTo(ILSettings other) { other.ShowILComments = ShowILComments; other.ShowXmlDocumentation = ShowXmlDocumentation; other.ShowTokenAndRvaComments = ShowTokenAndRvaComments; other.ShowILBytes = ShowILBytes; other.SortMembers = SortMembers; return other; }
public ILDecompilerSettings(ILSettings ilSettings = null) { this.ilSettings = ilSettings ?? new ILSettings(); options = CreateOptions().ToArray(); this.ilSettings.SettingsVersionChanged += ILSettings_SettingsVersionChanged; }
public ILDecompilerSettingsPage(ILSettings ilSettings) { _global_ilSettings = ilSettings; this.ilSettings = ilSettings.Clone(); }