Пример #1
0
        public override void VisitExportedTypeTable(ExportedTypeTable table)
        {
            int number = m_rows [ExportedTypeTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new ExportedTypeRow());
            }
        }
Пример #2
0
        public ExportedTypeTable GetExportedTypeTable()
        {
            ExportedTypeTable table = m_heap [ExportedTypeTable.RId] as ExportedTypeTable;

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

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