Esempio n. 1
0
 private void AddTable(int tableId, ICLRTable clrTable)
 {
     if (m_clrTables[tableId] != null)
         throw new InvalidOperationException("Internal error");
     m_clrTables[tableId] = clrTable;
     clrTable.Init((uint)tableId, m_rowCounts[tableId], MetaData);
 }
Esempio n. 2
0
 public void Initialize(uint tableNumber, uint rowNumber, ICLRTable table)
 {
     RowNumber = rowNumber;
     Table = table;
     TableNumber = tableNumber;
 }