예제 #1
0
        public static Expression Bind(Expression node, IBindingContext bindingContext)
        {
            var binder = new AccumulatorBinder(bindingContext);

            return(binder.Visit(node));
        }
예제 #2
0
 public static Expression Bind(Expression node, IBindingContext bindingContext)
 {
     var binder = new AccumulatorBinder(bindingContext);
     return binder.Visit(node);
 }