我有一个有 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。有具体实施细节的建议吗?
谢谢