我像一个疯子一样寻找解决方案,但无论如何,我似乎无法弄清楚为什么它不起作用,即使信息非常简单。
命令提示符:xsd" C:\ tmp \ MyApp.dll" /类型:SimpleConfig
尝试在DDL上执行XSD.exe时出错:
- 有一个错误反映出类型' MyApp.SimpleConfig'。
- 您必须在System.Configuration.ConfigurationLockCollection上实现默认访问器,因为它继承自ICollection。
app.config应如下所示:
<configuration>
<section name="SimpleConfig" type="MyApp.SimpleConfig, MyApp" />
<SimpleConfig Prop1="A value"
Prop2=1/>
</configuration>
所以我的问题是,当从ConfigurationSection继承时,如何实现ConfigurationLockcollection的默认访问器?