Esempio n. 1
0
 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);
 }
Esempio n. 2
0
		public ILDecompilerSettings(ILSettings ilSettings = null) {
			this.ilSettings = ilSettings ?? new ILSettings();
			options = CreateOptions().ToArray();
		}
Esempio n. 3
0
		public ILSettings CopyTo(ILSettings other) {
			other.ShowILComments = ShowILComments;
			other.ShowXmlDocumentation = ShowXmlDocumentation;
			other.ShowTokenAndRvaComments = ShowTokenAndRvaComments;
			other.ShowILBytes = ShowILBytes;
			other.SortMembers = SortMembers;
			return other;
		}
Esempio n. 4
0
 public ILDecompilerSettings(ILSettings ilSettings = null)
 {
     this.ilSettings = ilSettings ?? new ILSettings();
     options         = CreateOptions().ToArray();
 }
Esempio n. 5
0
 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();
		}