Exemplo n.º 1
0
        /// <summary>
        /// Reads the object data from a dump store
        /// </summary>
        /// <param name="reader">reader to read the data</param>
        internal void ReadDump(ref BinaryReader reader)
        {
            _header = new FTHeader();
            _header.ReadDump(ref reader);

            int nCnt = reader.ReadInt32();

            _binaryFileData = reader.ReadBytes(nCnt);
        }