Esempio n. 1
0
 public void copyFrom(t_group_list rhv)
 {
     index = rhv.index;
     occupation = rhv.occupation;
     cardNum = rhv.cardNum;
     name = rhv.name;
 }
Esempio n. 2
0
 public void copyFrom(t_group_list rhv)
 {
     index      = rhv.index;
     occupation = rhv.occupation;
     cardNum    = rhv.cardNum;
     name       = rhv.name;
 }
Esempio n. 3
0
        public override void derialize(ByteBuffer bu)
        {
            base.derialize(bu);
            bu.readUnsignedInt16(ref count);

            info = new List <t_group_list>();
            t_group_list item;
            int          idx = 0;

            while (idx < count)
            {
                item = new t_group_list();
                item.derialize(bu);
                info.Add(item);
                ++idx;
            }
        }