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

◆ EvaluateExpressions() [1/3]

void System.Data.DataTable.EvaluateExpressions ( )
inlinepackageinherited

Definition at line 5963 of file DataTable.cs.

5964 {
5965 if (_dependentColumns == null || 0 >= _dependentColumns.Count)
5966 {
5967 return;
5968 }
5969 foreach (DataRow row in Rows)
5970 {
5971 if (row._oldRecord != -1 && row._oldRecord != row._newRecord)
5972 {
5974 }
5975 if (row._newRecord != -1)
5976 {
5978 }
5979 if (row._tempRecord != -1)
5980 {
5982 }
5983 }
5984 }
DataRowCollection Rows
Definition DataTable.cs:701
void EvaluateDependentExpressions(DataColumn column)
List< DataColumn > _dependentColumns
Definition DataTable.cs:160

References System.Data.DataTable._dependentColumns, System.Collections.Generic.Dictionary< TKey, TValue >.Count, System.Data.DataTable.EvaluateDependentExpressions(), and System.Data.DataTable.Rows.

Referenced by System.Data.DataTable.EvaluateDependentExpressions(), System.Data.DataTable.InsertRow(), and System.Data.DataTable.SetNewRecordWorker().