方法1:DataTable table;
table = dataSet.Tables["table1"];
object o= table.Compute("max(sine)", "");

 

方法2:object max = table.Select().Max(p => p["sine"]);

相关文章:

  • 2021-12-02
  • 2022-03-06
  • 2021-05-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2021-11-13
相关资源
相似解决方案