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

ReadBytes() public method

Reads bytes
public ReadBytes ( HexPosition position, byte destination ) : void
position HexPosition Position
destination byte Destination array
return void
		public void ReadBytes(HexPosition position, byte[] destination) {
			if (destination == null)
				throw new ArgumentNullException(nameof(destination));
			ReadBytes(position, destination, 0, destination.LongLength);
		}

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, long destinationIndex, long length ) : void