cadencii.BITMAPINFOHEADER.readInt16 C# (CSharp) 메소드

readInt16() 개인적인 정적인 메소드

private static readInt16 ( Stream fs ) : short
fs Stream
리턴 short
        private static short readInt16( Stream fs ){
            byte[] buf = new byte[2];
            fs.Read( buf, 0, 2 );
            return BitConverter.ToInt16( buf, 0 );
        }