Example #1
0
        public short GetInt16(long offset = 0, bool next = true)
        {
            long     count  = 2;
            TesBytes b      = GetBytes(count, offset, next);
            short    result = b.ToInt16();

            return(result);
        }