/// <summary> /// Returns true if this object is pointing to the same handle as |that| /// object. /// </summary> public bool IsSame(CefBrowser that) { if (that == null) { return(false); } return(cef_browser_t.is_same(_self, that.ToNative()) != 0); }