public bool EqualsTo(NWPath other) { if (other == null) { return(false); } return(nw_path_is_equal(GetCheckedHandle(), other.Handle)); }
static void TrampolinePathChanged(IntPtr block, IntPtr path) { var del = BlockLiteral.GetTarget <Action <NWPath> > (block); if (del != null) { var x = new NWPath(path, owns: false); del(x); } }
static void TrampolineUpdatedSnapshot(IntPtr block, IntPtr path) { var del = BlockLiteral.GetTarget <Action <NWPath> > (block); if (del != null) { var nwPath = new NWPath(path, owns: false); del(nwPath); } }