SetInput() public method

public SetInput ( byte buffer, int offset, int length ) : void
buffer byte
offset int
length int
return void
Ejemplo n.º 1
0
 public void SetInput(byte[] inputBytes, int offset, int length)
 {
     input.SetInput(inputBytes, offset, length);    // append the bytes
 }
Ejemplo n.º 2
0
 public void SetInput(Memory <byte> inputBytes) => _input.SetInput(inputBytes);