Method Add
| Improve this Doc View SourceAdd(DataRow)
Adds DataRow into this DataSet.
Declaration
public void Add(DataRow dataRow)
Parameters
Type | Name | Description |
---|---|---|
DataRow | dataRow | The DataRow to be added. |
Implements
System.Collections.Generic.ICollection<T>.Add(T)
|
Improve this Doc
View Source
Add(DataRow, Action<DataRow>)
Adds DataRow into this DataSet.
Declaration
public void Add(DataRow dataRow, Action<DataRow> updateAction)
Parameters
Type | Name | Description |
---|---|---|
DataRow | dataRow | The DataRow to be added. |
System.Action<DataRow> | updateAction | A delegate to initialize the DataRow. |