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);
 }
		public ILLanguageDecompilerSettings(ILSettings ilSettings = null) {
			this.ilSettings = ilSettings ?? new ILSettings();
			this.options = CreateOptions().ToArray();
		}
Esempio n. 3
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. 4
0
 public ILDecompilerSettingsTab(ILSettings ilSettings)
 {
     this._global_ilSettings = ilSettings;
     this.ilSettings         = ilSettings.Clone();
 }
Esempio n. 5
0
 public ILLanguageDecompilerSettings(ILSettings ilSettings = null)
 {
     this.ilSettings = ilSettings ?? new ILSettings();
     this.options    = CreateOptions().ToArray();
 }
		public ILDecompilerSettingsTab(ILSettings ilSettings) {
			this._global_ilSettings = ilSettings;
			this.ilSettings = ilSettings.Clone();
		}