protected internal virtual void Add(EdgeToNeighbor e) { base.InnerList.Add(e); }
private void AddDirected(EdgeToNeighbor e) { Neighbors.Add(e); }
/// <summary> /// Adds an edge based on the data in the passed-in EdgeToNeighbor instance. /// </summary> internal void AddDirected(EdgeToNeighbor e) { Neighbors.Add(e); }
protected internal virtual void Remove(EdgeToNeighbor e) { base.InnerList.Remove(e); }
/// <summary> /// Adds an edge based on the data in the passed-in EdgeToNeighbor instance. /// </summary> protected internal virtual void AddDirected(EdgeToNeighbor e) { neighbors.Add(e); }
protected internal virtual void AddDirected(EdgeToNeighbor e);