Exemplo n.º 1
0
 long ReadLEB128_Long()
 {
     return(LEB128Helper.DecodeLong(Reader.ReadByte));
 }
Exemplo n.º 2
0
 uint ReadLEB128_UInt()
 {
     return(LEB128Helper.DecodeUInt(Reader.ReadByte));
 }
Exemplo n.º 3
0
 BigInteger ReadLEB128_BigInt()
 {
     return(LEB128Helper.Decode(Reader.ReadByte));
 }
Exemplo n.º 4
0
 void WriteLEB128(ulong Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }
Exemplo n.º 5
0
 void WriteLEB128(int Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }
Exemplo n.º 6
0
 void WriteLEB128(BigInteger Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }