Example #1
0
 public MapDataC(MapDataC rhs)
 {
     this.lnValueValue = rhs.lnValueValue;
     this.lnKeyValue   = rhs.lnKeyValue;
     this.lnIdValue    = rhs.lnIdValue;
     this.lnBlobValue  = rhs.lnBlobValue;
 }
        public override void write(Object obj1, BOutput bout1, long version)
        {
            MapDataC   obj  = (MapDataC)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnId);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnKey);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnValue);
            if (version >= 1000000020000007L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putInt(obj.lnBlob);
            }
        }
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            MapDataC  obj = (MapDataC)(obj1 != null ? obj1 : bin.onObjectCreated(new MapDataC()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnId = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnKey = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnValue = bbuf.getInt();
            if (version >= 1000000020000007L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.lnBlob = bbuf.getInt();
            }

            return(obj);
        }