ReadUInt64() public abstract méthode

Reads a ulong
public abstract ReadUInt64 ( HexPosition position ) : ulong
position HexPosition Position
Résultat ulong
Exemple #1
0
		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);
		}
Exemple #2
0
		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);
		}