0

每次启动应用程序时,首次加载自定义设置大约需要 2 秒。

有什么方法可以加速吗?

(或者这是否被广泛使用,正如这里所建议的那样,尽管速度会受到影响。)

这是代码:

public class MySettings : ApplicationSettingsBase
{
    [UserScopedSettingAttribute()]
    public int MyInt
    {
        get { return (int)(this["MyInt"]); }
        set { this["MyInt"] = value; }
    }
}

并这么称呼:

MySettings s = new MySettings();
int i = s.MyInt;
4

0 回答 0