AlbLib.IFF.IFFReader.ReadInt32 C# (CSharp) Méthode

ReadInt32() public méthode

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