我需要你的帮助。我已经看过很多关于如何创建自定义web.config阅读器的文章(像这样:Custom ConfigurationSections in .NET 2.0 .config Files)。但是,是否可以通过配置部分和密钥进行通用?而且,这是怎么做到的?
示例web.config 1:
<Section1>
<add Key1="value1-A" Key2="value1-B" Key3="value1-C"/>
<add Key1="value2-A" Key2="value2-B" Key3="value2-C"/>
</Section1>
示例web.config 2:
<Section2>
<add Key1="value1-A" Key2="value1-B" Key3="value1-C"/>
<add Key1="value2-A" Key2="value2-B" Key3="value2-C"/>
</Section2>