📌  相关文章
📜  设置保存 c# Visual Studio 不起作用 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:59.985000             🧑  作者: Mango

代码示例1
you need to call Default.Reload after calling the Save:
 Settings.Default.Save();
Settings.Default.Reload();