为什么不';t C#Properties.settings.default.key读取Properties.set
本文关键字:key default 读取 Properties set settings C#Properties 为什么不 | 更新日期: 2023-09-27 18:20:58
在应用程序(c#控制台应用程序)设置文件中,我有:Key=",作用域为"用户"。
然后我有以下代码:
Properties.Settings.Default.Key = "value1";
Properties.Settings.Default.Save();
string k = Properties.Settings.Default.Key; // here, k is an empty string.
我错过了什么?
是否在相同的用户上下文中执行持久化设置和访问设置代码?比方说,如果持久化代码以管理权限执行(模拟),那么它的行为可能会有所不同。