dnSpy.Contracts.Hex.HexBuffer.ReadByte C# (CSharp) Méthode

ReadByte() public abstract méthode

Reads a byte
public abstract ReadByte ( HexPosition position ) : byte
position HexPosition Position
Résultat byte
		public abstract byte ReadByte(HexPosition position);

Usage Example

Exemple #1
0
		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