/// <summary> /// Returns the the way with the given id /// </summary> /// <param name="id">The id to use for lookup</param> /// <returns>The way if it exists in the collection, null otherwise</returns> public Way GetWay(long id) { Way way = null; Ways.TryGetValue(id, out way); return(way); }