大家好,我想知道是否有任何方法可以在c#4.0中使用动态数据类型,就像asp.net mvc中的viewbag一样(如下所示:)
myProprty.SomeValue=SomeObject;
// which myProperty is the key and SomeVale is value of pair
//and the to retrieve the value:
object o = myProperty.SomeValue;
答案 0 :(得分:2)
ExpandoObject应该完全符合您的需求: http://msdn.microsoft.com/en-us/library/system.dynamic.expandoobject.aspx