Is it possible to determine what type a dynamic member access expects? I've tried

dynamic foo = new MyDynamicObject();
int x = foo.IntValue;
int y = (int)foo.IntValue;

And in the TryGetMember intercept GetMemberBinder.ReturnType is object either way. I also implemented TryConvert wondering if it might get invoked to do the conversion, but it never is hit.

Is there some other override I'm missing that lets me determine what Type the caller wants so that I can do the appropriate conversion?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

In C#, when using dynamic, the compiler always sets the binder to return type of object, and then does a second dynamic implicit conversion to the expected return type. So on a DynamicObject when called from c#, GetMemberBinder.ReturnType will always be object, but that said if you return another sort of springboard dynamic object with TryConvert implemented you could get that type, except if the user does var or dynamic as the variable, then they have a proxy that won't do anything until it becomes statically typed.

ImpromptuInterface does something different but along these lines, because it also has the desire to have a dynamic implementation that changes based on return types -- just you would have to describe the dynamic object via an interface.

link|improve this answer
feedback

I'm pretty sure you can't do that; the expression on the right side has to be evaluated without respect to what it's being assigned to. For example, what happens if someone writes var x = foo.IntValue;?

Also, the method signature is TryGetMember(GetMemberBinder binder, out Object result), suggesting that the "return" from the method should just be an object.

link|improve this answer
So what is the purpose of GetMemberBinder.ReturnType? – Arne Claassen Aug 12 '11 at 18:15
1  
Most likely to support other dynamic languages that do have a way to specify what the return type should be. – dlev Aug 12 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

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