我需要根据输入字符串保存到不同的设置。为什么这条线不起作用?
Properties.Settings.Default + colorOptionNametoSave = selectedIndexString;
Properties.Settings.Default.Save();
其中colorOptionNametoSave
是不同的颜色设置,selectedIndexString
是要保存的值。但是我收到消息:
错误 2:赋值的左侧必须是变量、属性或索引器。
我能想到的唯一解决方法是switch
声明,但我有很多颜色,所以这会很长。关于更有效的解决方案的任何想法?