Exemplo n.º 1
0
        /// <summary>
        ///		Make a deep copy of this list.
        /// </summary>
        /// <returns>The cCellTimeList that is a copy of this list.</returns>
        public cCellTimeList Clone()
        {
            // create the new list
            cCellTimeList CloneList = new cCellTimeList();

            foreach (cCellTime item in this)
            {
                CloneList.Add(item);
            }
            // return the new list
            return(CloneList);
        }