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

◆ IsEmpty()

bool System.Data.DataSet.IsEmpty ( )
inlineprivate

Definition at line 1972 of file DataSet.cs.

1973 {
1974 foreach (DataTable table in Tables)
1975 {
1976 if (table.Rows.Count > 0)
1977 {
1978 return false;
1979 }
1980 }
1981 return true;
1982 }
DataTableCollection Tables
Definition DataSet.cs:396

References System.Data.DataRowCollection.Count, System.Data.DataTable.Rows, and System.Data.DataSet.Tables.

Referenced by System.Data.DataSet.ReadXmlDiffgram().