C# Enterprise Block 应用程序设置和 Settings.Settings 设计器
我正在使用企业应用程序块的 v4,并且正在尝试了解如何访问我使用企业库配置工具添加的应用程序设置。就好像代码无法识别这些设置,即使我可以在 app.config 中看到它们。我确实添加了 Settings.Settings 设计器,即使在该设计器中添加的设置不会像通常那样显示在 app.config 中(如果我不使用 Enterprise Block),我也可以以标准方式访问这些
设置我可以访问通过企业块添加的应用程序设置吗?
I am working with v4 of the Enterprise Application block and I am trying to learn how to access the Application Settings that I have added using the Enterprise Library Configuration tool. It's as if the code does not recognize the settings even though I can see them in the app.config. I DO have a Settings.Settings designer added and I CAN get to those settings the standard way even though the settings added in that designer do NOT show up in the app.config like they normally would if I am NOT using the Enterprise Block
How do I access the App Settings that I added with the Enterprise Block?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加对 System.Configuration 的引用
使用 ConfigurationManager.AppSettings["settingname"].ToString() 访问您的应用程序设置,如果您有多个项目,则将主项目 app.config 作为链接添加到其他项目。
Add reference to System.Configuration
Use ConfigurationManager.AppSettings["settingname"].ToString() to access your application settings, if you have multiple projects then add the main project app.config to other projects as a link.