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

◆ AcceptChanges()

void System.Data.DataSet.AcceptChanges ( )
inline

Definition at line 914 of file DataSet.cs.

915 {
916 long scopeId = DataCommonEventSource.Log.EnterScope("<ds.DataSet.AcceptChanges|API> {0}", ObjectID);
917 try
918 {
919 for (int i = 0; i < Tables.Count; i++)
920 {
921 Tables[i].AcceptChanges();
922 }
923 }
924 finally
925 {
926 DataCommonEventSource.Log.ExitScope(scopeId);
927 }
928 }
DataTableCollection Tables
Definition DataSet.cs:396

References System.Data.InternalDataCollectionBase.Count, System.Data.DataCommonEventSource.Log, System.Data.DataSet.ObjectID, and System.Data.DataSet.Tables.