如何正确添加NameValueCollection到Properties.Settings

时间:2016-12-11 14:33:44

标签: c#

enter image description here

所以我只需点击下拉列表并浏览即可将NameValueCollection添加到Properties.Settings。 但是现在当我构建应用程序时,由于某种原因,这个属性没有添加到.config文件中。

查看Settings.Designer.cs文件,我猜这个部分也应该针对'NameValueCollection`的类型进行修改:

    [global::System.Configuration.UserScopedSettingAttribute()]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    public global::System.Collections.Specialized.NameValueCollection strColExcelFamNames {
        get {
            return ((global::System.Collections.Specialized.NameValueCollection)(this["strCol"]));
        }
        set {
            this["strCol"] = value;
        }
    }

所以我的问题是,如何正确添加NameValueCollection以便在Properties.Settings中使用?

0 个答案:

没有答案