AlbLib.IFF.IFFReader.ReadInt32 C# (CSharp) Method

ReadInt32() public method

Reads one int32. Automatically converted to little endian.
public ReadInt32 ( ) : int
return int
        public int ReadInt32()
        {
            rest -= 4;
            fileread += 4;
            return ToLittleEndian(reader.ReadInt32());
        }