Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to access the value of a dynamic c# property with a string:

dynamic d = new { value1 = "some", value2 = "random", value3 = "value" };

How can I get the value of d.value2 ("random") if I only have "value2" as a string? In javascript, I could do d["value2"] to access the value ("random"), but I'm not sure how to do this with c# and reflection. The closest I've come is this:

d.GetType().GetProperty("value2") ... but I don't know how to get the actual value from that.

As always, thanks for your help!

share|improve this question
8  
Note that this is not the intended purpose of "dynamic" and that this scenario does not work any better with "dynamic" than it does with "object". "dynamic" makes it possible to access properties when the name of the property is known at compile time but the type is not. Since you know neither the name nor the type at compile time, dynamic is not going to help you. – Eric Lippert Feb 9 '11 at 0:24

5 Answers

up vote 35 down vote accepted

Once you have your PropertyInfo (from GetProperty), you need to call GetValue and pass in the instance that you want to get the value from. In your case:

d.GetType().GetProperty("value2").GetValue(d, null);
share|improve this answer
1  
I'm getting a 'd.GetType().GetProperty("value2").GetValue(d)' threw an exception of type 'System.Reflection.TargetInvocationException' dynamic {System.Reflection.TargetInvocationException} in the watch window with that..? – TimDog Feb 8 '11 at 23:04
@TimDog: What's the error message in the exception? – Adam Robinson Feb 8 '11 at 23:06
2  
Think GetValue needs an additional parameter - e.g. d.GetType().GetProperty("value2").GetValue(d, null) – dommer Feb 8 '11 at 23:09
Adam, you were correct -- with dommer's ,null it worked correctly...thanks for your help. – TimDog Feb 8 '11 at 23:16
@dommer, @TimDog: D'oh! Right, I forgot about the indexer parameter, since only VB.NET supports parameterized properties. Fixed. – Adam Robinson Feb 8 '11 at 23:17

Impromptu-Interface let's you call it like dynamic but using the a string for the property name rather than the compiler doing it for you, and it ends up being 2.5x times faster than reflection (which is not nearly as fast as using the dynamic keyword, but this is due to the extra overhead of caching dynamically, where the compiler caches statically).

Impromptu.InvokeGet(d,"value2");
share|improve this answer

Much of the time when you ask for a dynamic object, you get an ExpandoObject (not in the question's anonymous-but-statically-typed example above, but you mention JavaScript and my chosen JSON parser JsonFx, for one, generates ExpandoObjects).

If your dynamic is in fact an ExpandoObject, you can avoid reflection by casting it to IDictionary, as described at http://msdn.microsoft.com/en-gb/library/system.dynamic.expandoobject.aspx.

Once you've cast to IDictionary, you have access to useful methods like .Item and .ContainsKey

share|improve this answer
public static object GetProperty(object target, string name)
{
    var site = System.Runtime.CompilerServices.CallSite<Func<System.Runtime.CompilerServices.CallSite, object, object>>.Create(Microsoft.CSharp.RuntimeBinder.Binder.GetMember(0, name, target.GetType(), new[]{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create(0,null)}));
    return site.Target(site, target);
}

Add reference to Microsoft.CSharp. Works also for dynamic types and private properties and fields.

share|improve this answer

d.GetType().GetProperty("value2")

returns a PropertyInfo object.

So then do

propertyInfo.GetValue(d)
share|improve this answer
thanks, this was the correct answer, but as mentioned above, the GetValue(d) needs to be GetValue(d,null) – TimDog Feb 8 '11 at 23:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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