如何从dictionary [“key”]迁移到ObjectDictionary.key?

时间:2013-11-06 10:33:31

标签: c# dictionary viewbag dynamic-typing

似乎ViewBag.SomeKey的工作原理很像php数组,因为它似乎没有提供关键名称的编译时检查。我想知道是否与ViewBag存在一对一的对应关系以及一些带有额外方法的字典类,即如果ViewBag.SomeKey的工作方式与myDictionary["SomeKey"]的工作方式相同。

另外,我想知道如何将字典转换为动态对象。

2 个答案:

答案 0 :(得分:3)

ViewBag是围绕ViewData的动态包装器,它是一个字典(ViewDataDictionary)。写ViewBag.SomeKeyViewData["SomeKey"]

相同

您可以像这样初始化它:

foreach(var item in myDictionary)
{
    ViewData[item.Key] = item.Value;
}

每个项目都可以ViewData["Key"]ViewBag.Key

答案 1 :(得分:2)

来自msdn

的示例
// The class derived from DynamicObject. 
public class DynamicDictionary : DynamicObject
{
    // The inner dictionary.
    Dictionary<string, object> dictionary = new Dictionary<string, object>();

    public DynamicDictionary(Dictionary<string, object> d) { dictionary = d; }
    public DynamicDictionary() { }
    // This property returns the number of elements 
    // in the inner dictionary. 
    public int Count
    {
        get
        {
            return dictionary.Count;
        }
    }

    // If you try to get a value of a property  
    // not defined in the class, this method is called. 
    public override bool TryGetMember(
        GetMemberBinder binder, out object result)
    {
        // Converting the property name to lowercase 
        // so that property names become case-insensitive. 
        string name = binder.Name.ToLower();

        // If the property name is found in a dictionary, 
        // set the result parameter to the property value and return true. 
        // Otherwise, return false. 
        return dictionary.TryGetValue(name, out result);
    }

    // If you try to set a value of a property that is 
    // not defined in the class, this method is called. 
    public override bool TrySetMember( SetMemberBinder binder, object value)
    {
        // Converting the property name to lowercase 
        // so that property names become case-insensitive.
        dictionary[binder.Name.ToLower()] = value;

        // You can always add a value to a dictionary, 
        // so this method always returns true. 
        return true;
    }
}

class Program
{
    static void Main(string[] args)
    {
        // Creating a dynamic dictionary.
        dynamic person = new DynamicDictionary(/*this can be your dictionary*/);

        // Adding new dynamic properties.  
        // The TrySetMember method is called.
        person.FirstName = "Ellen";
        person.LastName = "Adams";

        // Getting values of the dynamic properties. 
        // The TryGetMember method is called. 
        // Note that property names are case-insensitive.
        Console.WriteLine(person.firstname + " " + person.lastname);

        // Getting the value of the Count property. 
        // The TryGetMember is not called,  
        // because the property is defined in the class.
        Console.WriteLine( "Number of dynamic properties:" + person.Count);

        // The following statement throws an exception at run time. 
        // There is no "address" property,
        // so the TryGetMember method returns false and this causes a 
        // RuntimeBinderException. 
        // Console.WriteLine(person.address);
    }
}

// This example has the following output: 
// Ellen Adams 
// Number of dynamic properties: 2