Example #1
0
        internal CLRContent(DataDirectory dataDirectory, Section section) : base(dataDirectory,section)
        {
            long offset = section.RVAToOffset(dataDirectory.VirtualAddress);

            location = new StreamLocation(offset,dataDirectory.Size);
            header = new CLRHeader(this,dataDirectory);
            meta_data = null;
        }
Example #2
0
 internal TLSContent(DataDirectory dataDirectory, Section section) : base(dataDirectory,section)
 {
     long offset = section.RVAToOffset(dataDirectory.VirtualAddress);
     location = new StreamLocation(offset,dataDirectory.Size);
 }