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

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

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