ViewBag
प्रकार का है dynamic
लेकिन, आंतरिक रूप से एक हैSystem.Dynamic.ExpandoObject()
इसे इस तरह घोषित किया जाता है:
dynamic ViewBag = new System.Dynamic.ExpandoObject();
आप ऐसा क्यों कर सकते हैं:
ViewBag.Foo = "Bar";
एक नमूना विस्तारक वस्तु कोड:
public class ExpanderObject : DynamicObject, IDynamicMetaObjectProvider
{
public Dictionary<string, object> objectDictionary;
public ExpanderObject()
{
objectDictionary = new Dictionary<string, object>();
}
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
object val;
if (objectDictionary.TryGetValue(binder.Name, out val))
{
result = val;
return true;
}
result = null;
return false;
}
public override bool TrySetMember(SetMemberBinder binder, object value)
{
try
{
objectDictionary[binder.Name] = value;
return true;
}
catch (Exception ex)
{
return false;
}
}
}