public bool Equals(IGraphXVertex other) { if (other is null) { return(false); } return(ID == other.ID); }
public bool Equals(IGraphXVertex other) { return this == other; }
public bool Equals(IGraphXVertex other) { return(this == other); }
public bool Equals(IGraphXVertex other) { return(Equals(this, other)); }
public bool Equals(IGraphXVertex other) { return Equals(this, other); }