Exemplo n.º 1
0
        public VertexList <T> Clone()
        {
            VertexList <T> newList = new VertexList <T>();

            for (int i = 0; i < Items.Count; i++)
            {
                newList.Add(this[i]);
            }
            return(newList);
        }