示例#1
0
 public void Dispose()
 {
     MCNRSubChunk = null;
     MCVTSubChunk = null;
     MCLQSubChunks.Clear();
     MCLQSubChunks = null;
     MCSESubChunsk.Clear();
     MCSESubChunsk = null;
 }
示例#2
0
        // Offsets are relative to the end of MCNK header, in this case 0, read right away.
        private void BuildSubMCVT(BinaryReader reader, uint offset)
        {
            reader.SetPosition(offset + HeaderOffsetEnd);

            if (reader.IsEOF())
            {
                return;
            }

            MCVTSubChunk = new MCVTSubChunk(reader);
        }
示例#3
0
 // Offsets are relative to the end of MCNK header, in this case 0, read right away.
 private void BuildSubMCVT(BinaryReader reader, uint offsHeight)
 {
     MCVTSubChunk = new MCVTSubChunk(reader);
 }