vote up 0 vote down star

Calling an internal constructor with a dynamic argument in C# 4.0b results in the following exception

System.ArgumentNullException: Value cannot be null. Parameter name: constructor

Example code (thanks to Jon Skeet)

public class Test
{
    internal Test(string x)
    {
    }

    static void Main()
    {
        dynamic d = "";
        new Test(d);
    }
}

It seems the runtime does not consider internal constructors when it's trying to pick the right one. This seems to be a bug, so I posted it on Connect: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=472924

It seems they fixed it for the new version.

flag

43% accept rate
It's hard to say what you're doing wrong without seeing any code. Please give a short but complete example. – Jon Skeet Jul 6 at 14:53

2 Answers

vote up 1 vote down check

EDIT: Okay, I've now tracked it down a lot further - it's using an internal constructor that causes a problem.

Here's a really short but complete example which demonstrates the problem:

public class Test
{
    internal Test(string x)
    {
    }

    static void Main()
    {
        dynamic d = "";
        new Test(d);
    }
}

I suggest you log this with Connect - then post the URL here and we can vote on it :)

(My guess is that inside the DLR there's a call to GetConstructor without the appropriate BindingFlags.NonPublic, but that's just a guess...)

link|flag
@Rik - if this doesn't work on your system are you certain that you have C# 4.0 installed? As this functionality was only introduced in that version. – ChrisBD Jul 6 at 15:58
And the .Net 4.0 runtime? – ChrisBD Jul 6 at 16:00
I'm working on modifying this code to fail the same way as my own. I predict I will answer my own question this way :) And yes, I do have C#4.0 :) – Rik Jul 6 at 16:07
@Chris: Without C# 4.0 and .NET 4.0, I don't think Rik would have got as far as an execution-time exception :) @Rik: Yup, I suspect you will. That's one of the great things about coming up with a short but complete example - it's good at finding the problem. – Jon Skeet Jul 6 at 16:15
I got it to break, see the question. However, it seems I cut myself in the fingers more by using inner classes and access modifiers than by using dynamics. – Rik Jul 6 at 16:41
show 8 more comments
vote up 1 vote down

Without seeing the code I would suggest that you are passing a non-instantiated class to your constructor. Ensure that they are within scope and have been instantiated e.g. by use of new, before they are passed to your non-dynamic object.

Edit

On seeing your code I would suggest that you use DynamicObject rather than dynamic for your helper costructor and Entity property.

Edit after seeing Jon's answer

I think that the problem is in using the GetEntity() method to generate the dynamic object instance.

I note that Jon creates an instance of MyDynamicObject within the same scope as he uses it.

I assume that you're generating an instance of your object within the GetEntity() method, in which case it is no longer inscope when you come to use it, being classed as a local object.

Using "MyDynamicObject e = entity;" will force the compiler to imlicitly use the MyDynamicObject constructor and map your result to it. Hence address space is already allocated and in scope to be used when passing it to the Helper constructor.

link|flag
@Rik - have adjusted my answer after seeing your code. Try using DynamicObject for Entity property rather than dynamic. – ChrisBD Jul 6 at 15:26
You mean in the helper class? That doesn't make a difference. Or do you have another reason for preferring the static type? – Rik Jul 6 at 15:28
@Rik - I think that it's down to your dynamic class instance no longer being in scope when you come to use it. – ChrisBD Jul 6 at 16:51
It's none of this - see my edited answer. – Jon Skeet Jul 6 at 17:33

Your Answer

Get an OpenID
or

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