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

Reads a ulong
public abstract ReadUInt64 ( HexPosition position ) : ulong
position HexPosition Position
리턴 ulong
예제 #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);
		}
예제 #2
0
파일: HexField.cs 프로젝트: 0xd4d/dnSpy
		public UInt64HexField(HexBuffer buffer, string parentName, string name, HexPosition start, bool useDecimal = false)
			: base(buffer, parentName, name, start, 8) {
			data = new UInt64VM(buffer.ReadUInt64(start), a => UpdateValue(), useDecimal);
		}