How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
This is similar to: DLR return type You do need to match the return type specified by the ReturnType property. For all of the standard binaries this is fixed to object for almost everything or void (for the deletion operations). If you know you’re making a void call I’d suggest wrapping it in: Expression.Block( call, … Read more