我创建了一个包含两列“功能”和“日期”的数据表。此表记录了网站上 n 个函数中的每一个函数的使用日期。我想提取特定功能(例如“Access”)出现在表格中的次数。任何帮助将不胜感激。
DataTable table = new DataTable();
table.Columns.Add("Function", typeof(string));
table.Columns.Add("Date", typeof(datetime));
table.Rows.Add(Access, 01/08/2012);
table.Rows.Add(Load, 01/08/2012);
table.Rows.Add(Save, 01/08/2012);
table.Rows.Add(Access, 02/08/2012);
table.Rows.Add(Print, 02/08/2012);
int accessCount = 0;
foreach (DataRow row in table.Rows)
{
if (row["Function"] == "Access")
{
accessCount++;
}
}