使用Properties.Settings可以保存程序运行时更改的设置。
例如,可以保存最后一次使用的ID号,当程序再次启动的时候优先使用上一次使用的ID号。
读属性值:
string DebugValue = Properties.Settings.Default.Debug;
更新属性值:
Properties.Settings.Default.Debug = "vhuichen"; Properties.Settings.Default.Save();
时间: 2024-11-04 21:38:15