I know viewbag is one of the ready-to-use DynamicObject, but if you are not in a view or controller, is there any other Ready-to-use DynamicObject except to write your own?

(btw, I found a sample of a great implement http://www.codeproject.com/KB/cs/dynamicincsharp.aspx )

I am really lazy and just want to use some already made DynamicObject.

link|improve this question

What do you want to do with your dynamic object? Cant you just use the dynamic type? msdn.microsoft.com/en-us/library/dd264741.aspx – Rohan West Dec 9 '11 at 1:28
I have to write extra code for me to use the dynamic object, I found answer below, which I can just use it directly. – Eric Yin Dec 9 '11 at 1:49
feedback

1 Answer

up vote 6 down vote accepted

Have a look at the ExpandoObject Class.

ExpandoObject Class

Represents an object whose members can be dynamically added and removed at run time.

link|improve this answer
woooo, works thanks – Eric Yin Dec 9 '11 at 1:35
Yeah ExpandoObject is good. Recommended. – peter Dec 9 '11 at 1:36
feedback

Your Answer

 
or
required, but never shown

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