EDIT:
I am not sure how to describe it better ... I am trying to do something like this. But I do not want to pass a target. Instead of
delegate void object LateBoundMethod( object target, object[] arguments );my delegate should look like
delegate void object LateBoundMethod( object[] arguments );and the target is provided as an instance field. By taking and 'improving' the solution of Marc I get:
private Delegate CreateDelegate( Type returnType, Type[] parameterTypes ) m_Type = returnType; var i = 0; var param = Array.ConvertAll( parameterTypes, arg => Expression.Parameter( arg, "arg" + i++ ) ); var asObj = Array.ConvertAll( param, p => Expression.Convert( p, typeof( object ) ) ); var argsArray = Expression.NewArrayInit( typeof( object ), asObj ); var callEx = Expression.Call( null, typeof( FuncFactory ).GetMethod( "Resolve" ), argsArray ); var body = Expression.Convert( callEx, returnType ); var ret = Expression.Lambda( body, param ).Compile(); return ret;private readonly Container m_Container;private Type m_Type;public object Resolve( params object[] args ) return m_Container.Resolve( m_Type, args );But this is incomplete. The Resolve()-method is not static anymore (because it needs two instance fields) and cannot be called. So the problem here is
var callEx = Expression.Call( null, typeof( FuncFactory ).GetMethod( "Resolve" ), argsArray );Instead of passing null as the first argument I think I need a reference to 'this'. How do I do that?
