PutByte() public method

public PutByte ( int offset, byte value ) : void
offset int
value byte
return void
Exemplo n.º 1
0
 public void Pad(int size)
 {
     for (var i = 0; i < size; i++)
     {
         _bb.PutByte(--_space, 0);
     }
 }
Exemplo n.º 2
0
 public void Pad(int size)
 {
     _bb.PutByte(_space -= size, 0, size);
 }