cadencii.BITMAPINFOHEADER.readUInt32 C# (CSharp) Method

readUInt32() private static method

private static readUInt32 ( Stream fs ) : uint
fs Stream
return uint
        private static uint readUInt32( Stream fs ){
            byte[] buf = new byte[4];
            fs.Read( buf, 0, 4 );
            return BitConverter.ToUInt32( buf, 0 );
        }