vote up 3 vote down star
3

With the introduction of things like duck typing, I would love it if I compose object methods on the fly, besides extension methods. Anybody know if this is possible? I know that MS is worried about composing framework on the fly, but they seem to be dipping their toes in the water.

Update: Thanks to Pavel for clarifying. For example, say I return a new dynamic object from LINQ and would like to add some methods to it on the fly.

flag

Do you mean runtieme code generation? Or do you mean adding methods to objects dynamically, a la JavaScript? – Pavel Minaev Nov 2 at 18:40
The later. Looks like you can do it with expression trees, but what a PITA. – Trent Nov 2 at 18:48

3 Answers

vote up 8 vote down check

In light of the updated answer, you're actually not looking for "dynamic methods", so much so as "dynamic objects" - such that you may add new properties and methods to them at runtime. If that is correct, then in .NET 4.0, you can use ExpandoObject in conjunction with dynamic:

dynamic foo = new ExpandoObject();
foo.Bar = 123; // creates a new property on the fly
int x = foo.Bar; // 123

// add a new method (well, a delegate property, but it's callable as method)
foo.Baz = (Func<int, int, int>)
    delegate(int x, int y)
    {
        return x + y;
    };

foo.Baz(1, 2); // 3

You can have "dynamic methods" too, with expression trees, and once you obtain a delegate for such a method, you can also create a callable method-like property out of it on an ExpandoObject.

For use in LINQ queries, unfortunately, you cannot use object initializers with ExpandoObject; in the simplest case, the following will not compile:

var foo =  new ExpandoObject { Bar = 123; }

The reason is that Bar in this case will be looked up statically as a property of ExpandoObject. You need the receiver to be dynamic for this feature to kick in, and there's no way to make it that inside an object initializer. As a workaround for use in LINQ, consider this helper extension method:

public static dynamic With(this ExpandoObject o, Action<dynamic> init)
{
     init(o);
     return o;
}

Now you can use it thus:

from x in xs
select new ExpandoObject().With(o => {
    o.Foo = x;
    o.Bar = (Func<int, int>)delegate(int y) { return x + y; };
});
link|flag
Nice! What if I created a dynamic object with LINQ (returning specified properties), is that an ExpandoObject that I can add methods to? – Trent Nov 2 at 20:50
Anonymous types (created via new { ... } with no class specified after new) are not expando. For the rest of the story, check out the edited answer. – Pavel Minaev Nov 2 at 21:22
That's good work. Just some syntax corrections to get this to compile. Replace Action<> with Func<>, and need to put ';' after dynamic property/method creations instead of ',' – Trent Nov 2 at 22:07
@Trent, thanks, updated the code to fix mistakes that you've pointed out. – Pavel Minaev Nov 2 at 22:31
+1 clear and useful answer. Something to look forward to and experiment with on a rainy day :) – Abel Nov 3 at 2:06
vote up 2 vote down

Yes, there is: Generating Dynamic Methods with Expression Trees in Visual Studio 2010

link|flag
1  
This only works for static methods. See this post: justnbusiness.com/post/2009/… – 280Z28 Nov 2 at 20:06
vote up 1 vote down

This was already possible with the aid of DynamicMethod and/or MethodBuilder. Not sure if that counts for being "worried", as it has been around for a while now, though it requires a dynamic assembly in most scenarios (DynamicMethod can be used without, though).

link|flag
When I say worried, I mean this blogs.msdn.com/csharpfaq/archive/…. I was hoping to avoid reflection, but thanks for the tip – Trent Nov 2 at 18:27
sorry, pun was a bit intended. As you've found out, no need to use reflection. Nice answer Pavel wrote down! – Abel Nov 3 at 2:05

Your Answer

Get an OpenID
or

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