コード例 #1
0
ファイル: CorMDA.cs プロジェクト: zquans/dnSpy
 public bool Equals(CorMDA other) => !ReferenceEquals(other, null) && RawObject == other.RawObject;
コード例 #2
0
 public bool Equals(CorMDA other)
 {
     return(!ReferenceEquals(other, null) &&
            RawObject == other.RawObject);
 }
コード例 #3
0
		public MDANotificationEventContext(Debugger debugger, DBG.MDANotificationDebugCallbackEventArgs e)
			: base(debugger, e.Kind.ToDebugEventKind()) {
			this.args = e;
			this.mda = e.CorMDA;
		}
コード例 #4
0
 public MDANotificationEventContext(Debugger debugger, DBG.MDANotificationDebugCallbackEventArgs e)
     : base(debugger, e.Kind.ToDebugEventKind())
 {
     this.args = e;
     this.mda  = e.CorMDA;
 }