是否可以(并且是一个好主意)使用 app.config 作为项目文件?
我有一个小项目,需要在运行时配置一些设置。因为 app.settings 创建允许简单地创建启动时自动加载所需的所有可配置项,所以我想使用它。但是,是否可以使用appconfig机制来存储简单的项目信息,并且可以按需加载?那么我需要的是一种在项目的预构建设置结构中加载/保存 .settings 文件的简单方法。这可能吗?如果可以,这是一个好主意吗?
I have a small project which needs some settings to be configured at runtime. Because the app.settings creation allows to simply create all configurable items I need for loading automatically at startup, I would like to use this. However, is it possible to use the appconfig mechanism for storing simple project informations, which can be loaded on demand ? What I would need then is a simple way of Load/Save the .settings file in the prebuilt Settings structure of my project. Is this possible and if yes, a good idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,通过创建自定义部分将数据放入 app.config 是个好主意
,这里是为您执行此操作的教程
如何:使用 ConfigurationSection 创建自定义配置部分
App.Config 和自定义配置部分
Yes it good idea to put data in app.config by creating custom section
here is tutorial for you for doing this
How to: Create Custom Configuration Sections Using ConfigurationSection
App.Config and Custom Configuration Sections