Ejemplo n.º 1
0
        /// <summary>
        /// Create a clone of this Object
        /// </summary>
        /// <returns>The clone</returns>
        public override object Clone()
        {
            GmdcElementValues list = new GmdcElementValues();

            foreach (GmdcElementValueBase item in this)
            {
                list.Add(item);
            }

            return(list);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public GmdcElement(GeometryDataContainer parent) : base(parent)
 {
     data  = new GmdcElementValues();
     items = new IntArrayList();
 }