Exemple #1
0
        private Int16 GetInt16()
        {
            ByteLayout16 l16 = new ByteLayout16();

            l16.B2 = (byte)f.ReadByte();
            l16.B1 = (byte)f.ReadByte();
            return(l16.IntData16);
        }
Exemple #2
0
 private Int16 GetInt16()
 {
     ByteLayout16 l16 = new ByteLayout16();
     l16.B2 = (byte)_f.ReadByte();
     l16.B1 = (byte)_f.ReadByte();
     return l16.IntData16;
 }