示例#1
0
 public void Reset(DataRepresentation mt = DataRepresentation.Tpm)
 {
     Buffer        = new ByteBuf();
     SizesToFillIn = new Stack <SizePlaceholder>();
     Repr          = mt;
 }
示例#2
0
 public Marshaller(byte[] buf, DataRepresentation mt = DataRepresentation.Tpm)
 {
     Reset(mt);
     Buffer = new ByteBuf(buf);
 }