I have a DataSet where I need to find out how many rows has been changed using the following code:
DataSet
dataTable1 = dataSet1.Tables[\"FooTable\"].Ge
This is an old question, but because this might help a lot of c# coders out there, there is an easy way to solve this right now as follows:
if ((dataTableName?.Rows?.Count ?? 0) > 0)