1
我在app.config文件節,如閱讀的ConfigurationSection值(C#3.0)
<OurType>
<sometype typename = "type1" Iscolor="true"/>
<sometype typename = "type2" Iscolor="false"/>
</Ourtype>
我需要做的就是這個polulate值到我的域名對象,它是爲下
Class OurType
{
public string TypeName{get;set;}
public string IsColor{get;set;}
}
我要像做
list<OurType> obj = ConfigurationManager.GetCollection(Something)
將讀取該部分的配置部分,然後填充列表。
如何使用自定義配置來實現它?
感謝
我使用C#3.0和點淨框架3.5