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

Reads a short
public abstract ReadInt16 ( HexPosition position ) : short
position HexPosition Position
리턴 short
예제 #1
0
파일: HexField.cs 프로젝트: 0xd4d/dnSpy
		public Int16FlagsHexField(HexBuffer buffer, string parentName, string name, HexPosition start)
			: base(buffer, parentName, name, start, 2) {
			data = new Int16VM(buffer.ReadInt16(start), a => UpdateValue(), false);
		}
예제 #2
0
파일: HexField.cs 프로젝트: 0xd4d/dnSpy
		public Int16HexField(HexBuffer buffer, string parentName, string name, HexPosition start, bool useDecimal = false)
			: base(buffer, parentName, name, start, 2) {
			data = new Int16VM(buffer.ReadInt16(start), a => UpdateValue(), useDecimal);
		}