Ejemplo n.º 1
0
 public override HexBytes ReadHexBytes(HexPosition position, long length) => stream.ReadHexBytes(position, length);
Ejemplo n.º 2
0
 public override HexBytes ReadHexBytes(HexPosition position, long length)
 {
     CheckDisposed();
     return(stream?.ReadHexBytes(position, length) ?? new HexBytes(new byte[length], false));
 }