コード例 #1
0
        public override void VisitFieldPtrTable(FieldPtrTable table)
        {
            int number = m_rows [FieldPtrTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new FieldPtrRow());
            }
        }
コード例 #2
0
        public FieldPtrTable GetFieldPtrTable()
        {
            FieldPtrTable table = m_heap [FieldPtrTable.RId] as FieldPtrTable;

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

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