예제 #1
0
        public override void VisitAssemblyProcessorTable(AssemblyProcessorTable table)
        {
            int number = m_rows [AssemblyProcessorTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new AssemblyProcessorRow());
            }
        }
예제 #2
0
        public AssemblyProcessorTable GetAssemblyProcessorTable()
        {
            AssemblyProcessorTable table = m_heap [AssemblyProcessorTable.RId] as AssemblyProcessorTable;

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

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