标签: c#
我们如何从DataSet中找到最大值和最小值
答案 0 :(得分:3)
尝试使用linq来像这样对象
dt.Rows.Cast<DataRow>().Max(row => row[ColumnName]); dt.Rows.Cast<DataRow>().Min(row => row[ColumnName]);