2

我有一个只包含字符串属性的静态类。我想将该类转换为具有key=PropName,的名称-值对字典value=PropValue

下面是我写的代码:

void Main()
{
            Dictionary<string, string> items = new Dictionary<string, string>();
                var type = typeof(Colors);
                var properties = type.GetProperties(BindingFlags.Static);

                /*Log  properties found*/
                            /*Iam getting zero*/
                Console.WriteLine("properties found: " +properties.Count());

                foreach (var item in properties)
                {
                    string name = item.Name;
                    string colorCode = item.GetValue(null, null).ToString();
                    items.Add(name, colorCode);
                }

                /*Log  items created*/
                Console.WriteLine("Items  in dictionary: "+items.Count());
}

    public static class Colors
    {
        public static  string Gray1 = "#eeeeee";
        public static string Blue = "#0000ff";
    }

输出

properties found: 0
Items  in dictionary: 0

它没有读取任何属性 - 谁能告诉我我的代码有什么问题?

4

3 回答 3

4

Colors班级中的成员不是属性而是字段

用于GetFields代替 GetProperties 方法。

您最终可能会得到类似的结果(也不是对 的调用的更改GetValue):

                var properties = type.GetFields(BindingFlags.Static);

                /*Log  properties found*/
                            /*Iam getting zero*/
                Console.WriteLine("properties found: " +properties.Count());

                foreach (var item in properties)
                {
                    string name = item.Name;
                    string colorCode = item.GetValue(null).ToString();
                    items.Add(name, colorCode);
                }
于 2011-10-18T14:20:31.873 回答
4

您可以使用 linq 将转换压缩为几行:

var type = typeof(Colors);
var fields = type.GetFields().ToDictionary(f => f.Name, f => f.GetValue(f).ToString());
于 2011-10-18T14:32:09.600 回答
0

用这个:

var properties = type.GetFields(BindingFlags.Static|BindingFlags.Public);
于 2011-10-18T14:21:27.690 回答