I have a situation where I would like to do something simular to what was done with the ASP.NET MVC 3 ViewBag object where properties are created at runtime? Or is it at compile time?

Anyway I was wondering how to go about creating an object with this behaviour?

Thanks, Alex.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Use an object of type dynamic. See this article for more information.

link|improve this answer
Ah I see, quite a handy little keyword, Thanks a lot. – Alex Hope O'Connor Apr 27 '11 at 0:02
feedback

Behavior wise the ViewBag acts pretty much like ExpandoObject so that maybe what you want to use. However if you want to do custom behaviors you can subclass DynamicObject. The dynamic keyword is important when using these kinds of objects in that it tells to compiler to bind the method calls at runtime rather than compile time, however the dynamic keyword on a plain old clr type will just avoid type checking and won't give your object dynamic implementation type features that is what ExpandoObject or DynamicObject are for.

link|improve this answer
feedback

I think you want an anonymous type. See http://msdn.microsoft.com/en-us/library/bb397696.aspx

For example:

var me = new { Name = "Richard", Occupation = "White hacker" };

Then you can just get properties as in normal C#

Console.WriteLine(me.Name + " is a " + me.Occupation);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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