Ejemplo n.º 1
0
        /// <summary>
        /// Make an exact copy of this object using the cloneable interface.
        /// </summary>
        /// <returns>A new object that is a clone of the specified object.</returns>
        public override Object Clone()
        {
            AttributeList rtn = new AttributeList();

            for (int i = 0; i < m_list.Count; i++)
            {
                rtn.Add((Attribute)this[i].Clone());
            }

            return(rtn);
        }
Ejemplo n.º 2
0
        public Tag GetTag()
        {
            AttributeList attributes = new AttributeList();

            foreach (Attribute x in List)
            {
                attributes.Add((Attribute)x.Clone());
            }

            Tag retVal = new Tag(m_tag, attributes);

            return(retVal);
        }