ReadInt32() static private method

static private ReadInt32 ( Stream s ) : int
s Stream
return int
        private Hashtable Load(Stream s)
        {
            Hashtable table     = new Hashtable();
            int       itemCount = Utils.ReadInt32(s);

            for (int i = 0; i < itemCount; i++)
            {
                try
                {
                    string     key = Utils.ReadString(s);
                    ICacheItem val = persister.Read(s);
                    if (val == null)                      // corrupt cache file
                    {
                        return(table);
                    }

                    table[key] = val;
                }
                catch (IOException)
                {
                    return(table);
                }
            }
            return(table);
        }