Ejemplo n.º 1
0
        public object Clone()
        {
            TOCList tocListNew = new TOCList();

            foreach (TOCNode tn in arrayList)
            {
                tocListNew.Add((TOCNode)tn.Clone());
            }
            return(tocListNew);
        }
Ejemplo n.º 2
0
        public object Clone()
        {
            TOCList tocListNew = new TOCList();

            foreach(TOCNode tn in arrayList)
            {
                tocListNew.Add((TOCNode)tn.Clone());
            }
            return tocListNew;
        }