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

I would like to dynamically add properties to a ExpandoObject at runtime. So for example to add a string property call NewProp I would like to write something like

var x = new ExpandoObject();
x.AddProperty("NewProp", System.String);

Is this easily possible?

share|improve this question

2 Answers

up vote 58 down vote accepted
dynamic x = new ExpandoObject();
x.NewProp = string.Empty;

Alternatively:

var x = new ExpandoObject() as IDictionary<string, Object>;
x.Add("NewProp", string.Empty);
share|improve this answer
This looks good, I will try it out. – Craig Feb 8 '11 at 21:11
3  
I've never realized that Expando implements IDictionary<string, object>. I've always thought that cast would copy it to a dictionary. However, your post made me understand that if you change the Dictionary, you also change the underlying ExpandoObject! Thanks a lot – Dyna Jan 27 '12 at 18:48
Amazing , thank you. – Mohsen Apr 30 '12 at 5:38
It is amazing, and I have demonstrate that they are actually becoming properties of the object with sample code in my post on stackoverflow.com/questions/11888144/…, thanks – yo hal Aug 10 '12 at 2:42
getting Error 53 Cannot convert type 'System.Dynamic.ExpandoObject' to 'System.Collections.Generic.IDictionary<string,string>' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion, or null type conversion – TheVillageIdiot Oct 30 '12 at 9:23
show 1 more comment

http://www.bbsmvc.com/linqLearn/thread-1208-1-1.html See the source code.

public class DynamicObj : DynamicObject, IDictionary<string, object>
{
    // Wrap an internal dictionary
    // Override DynamicObject's TryGetProperty(), TrySetProperty()          Methods.    
}
DynamicObj d = new DynamicObj();
d["Pa"] = 1;
d.Add("Pb", 2);
int i = d.Pa;
int j = d.Pb;
// And..
d.Pc = 3;
int k = d.Pc;
// That is it..
share|improve this answer

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.