我需要你的帮助。我看过很多关于如何创建自定义 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>