public bool Equals(NativeObject other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(NativeInstance.Equals(other.NativeInstance) && IsDisposed == other.IsDisposed); }
public bool Equals(NativeObject other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return NativeInstance.Equals(other.NativeInstance) && IsDisposed == other.IsDisposed; }