是否可以(轻松)从其他应用的配置文件中获取ConfigurationManager
读取设置?
我有两个共享文件夹的应用程序(因为它们共享大量的dll)。我想只管理一个配置文件,让另一个应用程序读取第一个应用程序的配置文件,而不是自己需要。
最好我想避免写我自己的ConfigurationManager
课来做这件事。
file=
和configSection=
属性无法解决我的问题。
TIA
答案 0 :(得分:1)
您可以使用ConfigurationManager.OpenExeConfiguration
方法执行此操作:
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration("pathToYourOtherExe");