Ejemplo n.º 1
0
        /// <summary>
        /// 克隆函数
        /// </summary>
        /// <returns></returns>
        public new ICD Clone()
        {
            ICD icd = base.Clone() as ICD;        //克隆父类

            icd.operInfo = this.operInfo.Clone(); //克隆操作员
            icd.sexType  = this.sexType.Clone();

            return(icd);
        }