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

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

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

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