Exemplo n.º 1
0
        public static error_info UnPack(ByteArray reader)
        {
            error_info tbl = new error_info();
            tbl.code = reader.ReadInt32();
            tbl.msg = reader.ReadUTFBytes();

            return tbl;
        }
Exemplo n.º 2
0
        public static error_info UnPack(ByteArray reader)
        {
            error_info tbl = new error_info();

            tbl.code = reader.ReadInt32();
            tbl.msg  = reader.ReadUTFBytes();

            return(tbl);
        }