dnSpy.Contracts.Hex.HexBuffer.ReadUInt64 C# (CSharp) 메소드

ReadUInt64() 공개 추상적인 메소드

Reads a ulong
public abstract ReadUInt64 ( HexPosition position ) : ulong
position HexPosition Position
리턴 ulong
		public abstract ulong ReadUInt64(HexPosition position);

Usage Example

예제 #1
0
파일: HexField.cs 프로젝트: 0xd4d/dnSpy
		public UInt64FlagsHexField(HexBuffer buffer, string parentName, string name, HexPosition start)
			: base(buffer, parentName, name, start, 8) {
			data = new UInt64VM(buffer.ReadUInt64(start), a => UpdateValue(), false);
		}
All Usage Examples Of dnSpy.Contracts.Hex.HexBuffer::ReadUInt64