/// <summary> /// Return edge beetwen two points (their ID's) from Dictionary /// </summary> public Edge GetEdge(int firstPointId, int secondPointId) { return(Edges[Helper.HashFunction(firstPointId, secondPointId)]); }