更改“ClientSettingsSection”内的设置用 C#
是否可以更改 exe 配置中的 ClientSettingsSection (System.Configuration.ClientSettingsSection) 内的设置值?不幸的是,ClientSettingsSection 集合中的设置是只读!
Is it possible to change values of settings within a ClientSettingsSection (System.Configuration.ClientSettingsSection) in a exe-configuration? Unfornately the settings in the ClientSettingsSection collection are read-only !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用用户设置来设置要在运行时更改的设置。查看在 C# 中使用设置
You should use user settings for settings you want to change at runtime. Take a look at Using Settings in C#