📌  相关文章
📜  C# 计算字符串中的特定单词 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:05.645000             🧑  作者: Mango

代码示例2
var count = this.GridView1.Rows.Cast()
             .Count(row => row.Cells["PresentAbsent"].Value == "Present");

            this.lblPresent.Text = count.ToString();