예제 #1
0
파일: Tally.cs 프로젝트: zxcvas/ClosedXML
 public double Count(bool numbersOnly)
 {
     if (numbersOnly)
     {
         return(NumericValues().Count());
     }
     else
     {
         return(_list.Where(o => !Statistical.IsBlank(o)).Count());
     }
 }