DataTableCollection::Add Method (String^)
.NET Framework (current version)
Creates a DataTable object by using the specified name and adds it to the collection.
Assembly: System.Data (in System.Data.dll)
Parameters
- name
-
Type:
System::String^
The name to give the created DataTable.
| Exception | Condition |
|---|---|
| DuplicateNameException | A table in the collection has the same name. (The comparison is not case sensitive.) |
If either null or an empty string ("") is passed in, a default name is given to the newly created DataTable. This name is based on the order in which the table was added ("Table1", "Table2", and so on).
The CollectionChanged event occurs if the table is successfully added to the collection.
The following example adds a DataTable with the given name to the DataTableCollection.
.NET Framework
Available since 1.1
Available since 1.1
Show: