Beispiel #1
0
        public static bool Copy(CM1Node destination, CM1Node source)
        {
            if (destination == null)
            {
                return(false);
            }

            return(destination.Copy(source));
        }
Beispiel #2
0
        public bool Copy(CM1Node source)
        {
            if (source == null)
            {
                return(false);
            }

            GrpId     = source.GrpId;
            Grp       = source.Grp;
            GrpChild  = source.GrpChild;
            ChildsNum = source.ChildsNum;
            CnstrNum  = source.CnstrNum;
            PruneFase = source.PruneFase;

            return(true);
        }