引用设置对象时,对象引用未设置为对象的实例

时间:2014-05-08 20:52:46

标签: c# .net arrays settings nullreferenceexception

我有一个settings属性,它是我的Properties.Settings.Default中的“string [] []”(由字符串数组构成的字符串数组)。 我这样设置,似乎VS正确读取它:

<Setting Name="Markers" Type="System.String[][]" Scope="User">

这是我的代码:

string[][] buttons = (string[][])Properties.Settings.Default.Markers;
buttons[0] = new string[] { "pause", "", "0", "255", "0" }; // Object reference not set to an instance of an object - here

buttons[1] = new string[] { "pause", "", "0", "255", "0" };

buttons[2] = new string[] { "effect", "", "255", "0", "0" };

buttons[3] = new string[] { "interest", "", "255", "255", "0" };

buttons[4] = new string[] { "cut", "", "0", "255", "255" };

其余代码与Properties.Settings.Default.Markers无关。我刚刚开始处理这个问题 编辑: 我发现按钮是空的...我发现初始化它的唯一方法是:Properties.Settings.Default.Markers = new string [100] [];问题是它最多有100个数组。我的问题是有没有办法在不设置长度的情况下初始化它?

1 个答案:

答案 0 :(得分:0)

我继续搜索了很多,发现了这个:How to store a list of objects in application settings

这回答了我的问题并帮助了我很多