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

ReadByte() public abstract method

Reads a byte
public abstract ReadByte ( HexPosition position ) : byte
position HexPosition Position
return byte
		public abstract byte ReadByte(HexPosition position);

Usage Example

示例#1
0
文件: HexField.cs 项目: 0xd4d/dnSpy
		public ByteFlagsHexField(HexBuffer buffer, string parentName, string name, HexPosition start)
			: base(buffer, parentName, name, start, 1) {
			data = new ByteVM(buffer.ReadByte(start), a => UpdateValue(), false);
		}
All Usage Examples Of dnSpy.Contracts.Hex.HexBuffer::ReadByte