예제 #1
0
 public ILCodeBreakpoint(SerializedDnSpyToken methodKey, uint ilOffset, bool isEnabled = true)
     : base(isEnabled)
 {
     this.myMarkedTextLine = new MyMarkedTextLine(this, methodKey, ilOffset);
 }
예제 #2
0
		public ILCodeBreakpoint(string asmName, MethodKey methodKey, uint ilOffset, bool isEnabled = true)
			: base(isEnabled) {
			this.asmName = asmName;
			this.myMarkedTextLine = new MyMarkedTextLine(this, methodKey, ilOffset);
		}
예제 #3
0
		public ILCodeBreakpoint(SerializedDnToken methodKey, uint ilOffset, bool isEnabled = true)
			: base(isEnabled) {
			this.myMarkedTextLine = new MyMarkedTextLine(this, methodKey, ilOffset);
		}
예제 #4
0
 public ILCodeBreakpoint(string asmName, MethodKey methodKey, uint ilOffset, bool isEnabled = true)
     : base(isEnabled)
 {
     this.asmName          = asmName;
     this.myMarkedTextLine = new MyMarkedTextLine(this, methodKey, ilOffset);
 }