VS2010:在调试期间查看.settings文件
我用 C# 编写的 Windows 窗体应用程序在执行期间修改 .settings 文件中的用户设置。如何在调试期间查看 .settings 文件的内容,以便了解设置值正在更改为什么?
A Windows Forms application I'm writing in C# is modifying user settings in a .settings file during execution. How can I view the contents of the .settings file during Debug so I can see what the settings values are being changed to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将监视放在
Properties.Settings.Default
上?Put a watch on
Properties.Settings.Default
?