我正在寻找一种允许用户以简单的方式更改C#控制台应用程序设置的方法。我只想用一个键:值对来呈现它们,然后它们可以改变值。
我只能找到解决方案,向用户提供更多信息。可能会使他们感到困惑的事情或我不希望他们改变的事情。
答案 0 :(得分: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文件。
答案 1 :(得分:0)
尝试使用您自己的配置文件,让用户通过在记事本中打开该文件来更改设置。否则,您可以提供它们的界面。类似于应用程序目录中的YourAppName.config。
答案 2 :(得分:0)
如果您正在使用application.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);