有多个配置文件

时间:2016-03-30 12:15:46

标签: c# app-config

我的项目中有一个app.config文件,我可以使用

读取它
public static String baseURL = ConfigurationManager.AppSettings["baseURL"];

我的问题是我的app.config文件中有很多条目,我希望有多个配置文件来逻辑分割数据。

所以我基本上想要有几个配置文件,如下所示:

Strings.config     (to hold all Strings)
Urls.config        (to hold all URLs)
Settings.config    (to hold all settings)
Credentials.config (to hold all credentials)

如何从不同的配置文件中读取值?

0 个答案:

没有答案