我的项目中有一个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)
如何从不同的配置文件中读取值?