Exemplo n.º 1
0
        public static DynamicExpression DeleteMember(ActionBinder binder, string name, params Expression[] arguments)
        {
            ContractUtils.RequiresNotNull(arguments, "arguments");
            ContractUtils.Requires(arguments.Length >= 1, "arguments");

            return(Expression.Dynamic(OldDeleteMemberAction.Make(binder, name), typeof(object), arguments));
        }
Exemplo n.º 2
0
 public DeleteMemberBinderHelper(CodeContext context, OldDeleteMemberAction action, object[] args) : base(context, action, args)
 {
 }