I want to pass an extension method that returns void as a parameter to another extension method that returns dynamic.

public static void AddTo(this Object entity, Object parent)
{
    parent.GetCollectionOf(entity).Add(entity);
}
public static dynamic And(this Object entity, Action method)
{
    entity.method(parent);
    return entity;
}

I'd like to use it something like this,

dynamic parent = MakeNew(parentType);    
dynamic entity = MakeNew(type).And(AddTo(parent));

I like to pass any void method into And() but still return the object it extended. I hope the dynamic return type is not problematic.

What is the syntax for this kind of thing?

link|improve this question

77% accept rate
Your AddTo method takes two parameters... one of them would presumably come from parent, but where do you expect the other one to come from? – Jon Skeet Sep 6 '11 at 13:36
@Jon hmm.. from the object that And() is extending. At least that's what I would like. I just don't know how to write it. – Benjamin Sep 6 '11 at 13:38
You'll need to make it an Action<object> parameter and call method(entity). – Jon Skeet Sep 6 '11 at 13:39
feedback

3 Answers

Have I got your question right?

dynamic entity = MakeNew(type).And(() => 
{
  AddTo(parent); 
}); 
link|improve this answer
I think so. Let me try it out. Thanks. – Benjamin Sep 6 '11 at 13:36
parent is defined dynamic parent = MakeNew(parentType) which seems to cause "Cannot use a lambda expression as an argument to a dynamically dispatched operation without first casting it to a delegate or expression tree type" when I call And(). – Benjamin Sep 6 '11 at 18:32
feedback

I think that C# is not yet "dynamic" enough to do the thing I think you want.

The And method won't work, since the entity parameter is of type object, so entity.method(parent) will not work. Even if you define entity to be of type dynamic, C# will try to find a method called "method" to call. You can do this in your example:

public static dynamic And(this Object entity, Action method, object parameter) 
{     
      method(entity, parameter);     
      return entity; 
}

and

dynamic entity = MakeNew(type).And(AddTo, parameter); 
link|improve this answer
I had to mess around this a bit because the method(entity, parameter) call wouldn't take 2 parameters, but in the end it didn't like that entity was not yet defined when I tried to pass it in. I could have messed it up pretty bad though. – Benjamin Sep 6 '11 at 18:29
feedback

I suspect you actually want this:

public static void AddTo(this Object entity, Object parent)
{
    parent.GetCollectionOf(entity).Add(entity);
}

public static dynamic And(this Object entity, Action<object> method)
{
    method(entity);
    return entity;
}

dynamic entity = MakeNew(type).And(entity => entity.AddTo(parent));

Having said that, it's still not clear where parent is coming from to start with...

link|improve this answer
parent is also dynamic parent = MakeNew(parentType) which seems to give "Cannot use a lambda expression as an argument to a dynamically dispatched operation without first casting it to a delegate or expression tree type" – Benjamin Sep 6 '11 at 18:25
@Benjamin: Ah, right. Why exactly do you need it to be dynamic? Why not just have it as object? Are you sure that dynamic typing is really helping you here? – Jon Skeet Sep 6 '11 at 18:46
I'm such a beginner that I can't tell you if object would produce the same results or not. I will mess around with it. I don't really understand the diff between using object and using dynamic yet.. dynamic simply sounded self explanatory to me. I will put the MakeNew method into the original post if it makes a difference. Thanks. – Benjamin Sep 6 '11 at 18:51
@Benjamin: If you're a real beginner to C# I would advise against using dynamic. There are numerous subtleties to it. But fundamentally you're trying to call an extension method against a dynamic expression, which isn't going to work to start with - and then trying to use a lambda expression as the argument... basically you're doing a bunch of things which aren't supported by dynamic. – Jon Skeet Sep 6 '11 at 18:53
I think I'll drop the And() extension method idea then because it doesn't seem like I can make a very dynamic application using object - one person said you can't dynamically change an object. I've heard of generics but I've not found a relevant enough explanation to discern if they would allow the dynamic design I am after. Thanks for your help. – Benjamin Sep 6 '11 at 19:10
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.