public override void VisitAssemblyRefProcessorTable(AssemblyRefProcessorTable table)
        {
            int number = m_rows [AssemblyRefProcessorTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new AssemblyRefProcessorRow());
            }
        }
        public AssemblyRefProcessorTable GetAssemblyRefProcessorTable()
        {
            AssemblyRefProcessorTable table = m_heap [AssemblyRefProcessorTable.RId] as AssemblyRefProcessorTable;

            if (table != null)
            {
                return(table);
            }

            table = new AssemblyRefProcessorTable();
            InitializeTable(table);
            return(table);
        }