我正在开发一个 C# 类库,该类库需要能够从web.configorapp.config文件中读取设置(取决于 DLL 是从 ASP.NET Web 应用程序还是 Windows 窗体应用程序引用的)。
web.config
app.config
我发现
ConfigurationSettings.AppSettings.Get("MySetting")
有效,但该代码已被 Microsoft 标记为已弃用。
我读过我应该使用:
ConfigurationManager.AppSettings["MySetting"]
但是,System.Configuration.ConfigurationManager该类似乎不能从 C# 类库项目中获得。
System.Configuration.ConfigurationManager
做这个的最好方式是什么?
您需要在项目的 引用文件夹中* 添加对 的引用。 System.Configuration *
System.Configuration
你绝对应该使用ConfigurationManagerover the obsolete ConfigurationSettings。
ConfigurationManager
ConfigurationSettings