cadencii.BITMAPINFOHEADER.readInt32 C# (CSharp) Method

readInt32() private static method

private static readInt32 ( Stream fs ) : int
fs Stream
return int
        private static int readInt32( Stream fs ){
            byte[] buf = new byte[4];
            fs.Read( buf, 0, 4 );
            return BitConverter.ToInt32( buf, 0 );
        }