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

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

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

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