SetInput() public méthode

public SetInput ( byte buffer, int offset, int length ) : void
buffer byte
offset int
length int
Résultat void
Exemple #1
0
 public void SetInput(byte[] inputBytes, int offset, int length)
 {
     input.SetInput(inputBytes, offset, length);    // append the bytes
 }
Exemple #2
0
 public void SetInput(Memory <byte> inputBytes) => _input.SetInput(inputBytes);