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

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

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

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