0

我正在寻找一种允许用户以简单的方式更改 C# 控制台应用程序设置的方法。我只想向他们展示一个键:值对,然后他们可以在其中更改值。

我只能找到解决方案,向用户提供更多信息。可能使他们感到困惑的事情或我不希望他们改变的事情。

4

3 回答 3

2
[Serializable]
public class SettingItem
{
    public string Name { get; set; }
    public string Value { get; set; }
}

private List<SettingItem> ProjSettings = new List<SettingItem>();
ProjSettings.Add(new SettingItem {Name = "SomeKey", "SomeValue"});

然后,您可以保存/加载到和从 xml 文件。

于 2013-03-18T13:35:39.230 回答
0

尝试使用您自己的配置文件,并让用户通过在记事本中打开该文件来更改设置。否则,您可以为它们提供接口。应用程序目录中的 YourAppName.config 之类的东西。

于 2013-03-18T13:30:30.993 回答
0

如果您使用的是 applicaiton.exe.config,那么您可以使用与此类似的代码。

在下面的代码示例中 - 您必须相应地进行更改

   ArrayList keysArrList = new ArrayList();
            keysArrList.AddRange(hashConfigTable.Keys);
            keysArrList.Sort();
         //Get the application configuration file.
                    System.Configuration.Configuration config =
                                ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

                    if (filepath.Length > 0)
                    {
                        System.Configuration.ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
                        configFileMap.ExeConfigFilename = filepath;

                        config = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);
                    }


                ConfigurationSectionGroup mySectiongrp = config.GetSectionGroup("IF ANY GROUP PRESENT IN CONFIG FILE");
                ConfigurationSection mySection = mySectiongrp.Sections[sFormatClassName];



                foreach (Object okey in keysArrList)
                {
                    XmlNode node = GetNodeAvailable(document, okey.ToString());

                    XmlAttributeCollection attrcoll = node.Attributes;

                    foreach (XmlAttribute attr in attrcoll)
                    {                   
                        if ( String.Equals(attr.Name ,"VALUE",StringComparison.OrdinalIgnoreCase))
                        {
                            XmlComment newComment;
                            newComment = document.CreateComment(string.Format(" Modified by Batch WinConsole Version:{0} on Date:{1} PREVIOUS_VALUE:{2}  By:{3}", m_sFileVersion, DateTime.Now, attr.Value,System.Environment.UserName));

                            XmlElement element = attr.OwnerElement;
                            element.AppendChild(newComment);
                            attr.Value = Convert.ToString(hashConfigTable[okey]);
                        }
                    }
                }


    mySection.SectionInformation.SetRawXml(document.OuterXml);


                //Before save take a backup
                FileSystemUtil fsutil = new FileSystemUtil();
                string sNewfilename=string.Format("{0}_{1}.config",Path.GetFileNameWithoutExtension(filepath), DateTime.Now.ToString("yyyyMMMdd_hhmmss"));
                fsutil.FileCopy(filepath, Path.Combine(Path.GetDirectoryName(filepath), "Backup", "config", sNewfilename));


                //final Save
                config.Save(ConfigurationSaveMode.Full);
                ConfigurationManager.RefreshSection(sFormatClassName);
于 2013-03-18T13:45:49.517 回答