Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ Delete()

void System.Data.DataRow.Delete ( )
inline

Definition at line 554 of file DataRow.cs.

555 {
557 {
558 throw ExceptionBuilder.DeleteInRowDeleting();
559 }
560 if (_newRecord != -1)
561 {
562 _table.DeleteRow(this);
563 }
564 }
readonly DataTable _table
Definition DataRow.cs:12
void DeleteRow(DataRow row)

References System.Data.DataRow._inDeletingEvent, System.Data.DataRow._newRecord, System.Data.DataRow._table, System.Data.ExceptionBuilder.DeleteInRowDeleting(), and System.Data.DataTable.DeleteRow().

Referenced by System.Data.DataRowCollection.Remove().