Exemplo n.º 1
0
 void WriteLEB128(int Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }
Exemplo n.º 2
0
 void WriteLEB128(ulong Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }
Exemplo n.º 3
0
 void WriteLEB128(BigInteger Value)
 {
     LEB128Helper.Encode(Value, Writer.Write);
 }