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