Exemplo n.º 1
0
        private JPBlob ReadJPBlob()
        {
            int    length = ReadInt32();
            JPBlob result = new JPBlob();

            result.Buffer = ReadBytes(length);
            return(result);
        }
Exemplo n.º 2
0
 private JPBlob ReadJPBlob()
 {
     int length = ReadInt32();
       JPBlob result = new JPBlob();
       result.Buffer = ReadBytes(length);
       return result;
 }