public void AddTable(AttributeTable table)
 {
     if (table == null)
     {
         throw new ArgumentNullException("table");
     }
     this.MutableTable.AddTable(table.MutableTable);
 }
Example #2
0
 public void AddAttributeTable(AttributeTable table)
 {
     if (table == null)
     {
         throw new ArgumentNullException("table");
     }
     lock (this._syncLock)
     {
         this.Tables.Add(table);
         this._tableArray = (AttributeTable[])null;
     }
 }