在我的项目中,我有两个名为app.config
和的应用程序配置文件accessLevel.config
。现在使用OpenExeConfiguration
我可以访问app.config.exe file
但不能访问accessLevel.config
. 请帮助解决这个问题。
我有 2 个配置文件的主要原因是显示差异并使代码简单。我需要从accessLevel.config
我的C#
代码中读取值。
尝试了以下代码但没有用:
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.File = "App2.config";