Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AddWithColumnEvents()

DataRow System.Data.DataRowCollection.AddWithColumnEvents ( params object[] values)
inlinepackage

Definition at line 104 of file DataRowCollection.cs.

105 {
106 DataRow dataRow = _table.NewRow(-1);
107 dataRow.ItemArray = values;
108 _table.AddRow(dataRow, -1);
109 return dataRow;
110 }
void AddRow(DataRow row)

References System.Data.DataRowCollection._table, System.Data.DataTable.AddRow(), System.Data.DataTable.NewRow(), and System.values.

Referenced by System.Data.XmlDataLoader.LoadTable().