使用propertydescriptor

时间:2015-07-23 18:00:29

标签: c# reflection propertydescriptor

我有一个有2个属性的类

public class PropertyBag
{
    public string PropertyName {get;set;}
    public object PropertyValue {get;set;}
}

所以这个“PropertyValue”属性可以包含任何原始数据类型,即int,datetime,string等。

我正在使用嵌套元素从自定义配置文件中读取设置。像这样:

<Workspace name="ws1">
  <property name="version" type="decimal"> 1.3 </property>
  <property name="datetime" type="datetime"> 10-10-2015 </property>
  <property name="mainwindowlocation" type="string"> 10 300 850 </property>
  ...more nested elements...
</Workspace>  

我希望能够根据配置文件中的值动态设置“PropertyValue”属性的类型。一位同事提到了PropertyDescriptors / TypeDescriptors / dynamic。有具体实施细节的任何建议?

由于

1 个答案:

答案 0 :(得分:0)

您可以简单地使用switch语句根据类型值解析值。

var properties = XDocument.Load("XMLFile2.xml").Descendants("property").Select(p =>
{
    string name = p.Attribute("name").Value;
    string type = p.Attribute("type").Value;
    string value = p.Value;

    PropertyBag bag = new PropertyBag();
    bag.PropertyName = name;

    switch (type)
    {
        case "decimal":
            bag.PropertyValue = Decimal.Parse(value);
            break;

        case "datetime":
            bag.PropertyValue = DateTime.Parse(value);
            break;

        default:
            bag.PropertyValue = value;
            break;
    }

    return bag;
});