dnSpy.Contracts.Hex.HexBuffer.ReadBytes C# (CSharp) Method

ReadBytes() public abstract method

Reads bytes
public abstract ReadBytes ( HexPosition position, byte destination, long destinationIndex, long length ) : void
position HexPosition Position
destination byte Destination array
destinationIndex long Index
length long Length
return void
		public abstract void ReadBytes(HexPosition position, byte[] destination, long destinationIndex, long length);

Same methods

HexBuffer::ReadBytes ( HexPosition position, long length ) : byte[]
HexBuffer::ReadBytes ( HexPosition position, ulong length ) : byte[]
HexBuffer::ReadBytes ( HexSpan span ) : byte[]
HexBuffer::ReadBytes ( HexPosition position, byte destination ) : void