public static int Count(Expression expression, ExpressionType type) { var counter = new ExpressionTypeCounter(type); counter.Visit(expression); return counter.count; }
public static int Count(Expression expression, ExpressionType type) { var counter = new ExpressionTypeCounter(type); counter.Visit(expression); return(counter.count); }