Пример #1
0
        public GDETwoDListCustomData ShallowClone()
        {
            string newKey = Guid.NewGuid().ToString();
            GDETwoDListCustomData newClone = new GDETwoDListCustomData(newKey);

            newClone.cust_string_list = new List <string>(cust_string_list);
            newClone.Set_cust_string_list();

            return(newClone);
        }
Пример #2
0
        public GDETwoDListCustomData DeepClone()
        {
            GDETwoDListCustomData newClone = ShallowClone();

            return(newClone);
        }