如何使用 asp.net mvc 计算 if/else 条件下的 Null 值?

How to count the Null values in if/else condition using asp.net mvc?

我想创建一个计算空值的条件 value.If 空值计数为 10 将向人们发送一封电子邮件,通知他们系统未扫描任何条形码标签。有什么想法吗?

谢谢!

var counter=0;
 for(//your range like an array maybe)
 {
  if(your condition==null)
  counter++;
 }
 if(counter=10)
 {
   //do stuff
 }