我有一个包含 1 个控制台应用程序和 2 个库的解决方案。
在库中,我有两个不同的 app.config,例如我的 data.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="OutputFileFolder" value="c:\\log" />
<add key="OutputIndexFile" value="c:\\log\index.xml" />
</appSettings>
</configuration>
在这个库类中,我在构造函数中
_indexPath = ConfigurationManager.AppSettings["OutputIndexFile"];
但是我应该如何Data.config
从我的主控制台应用程序加载文件(这应该是主配置文件)?