I
Irfan
hi,
I wanted to save a simple collection in Settings.Settings but i am not able
to retrieve it.
Although no errors while saving it but no value are retrieved either.
Do i have to do something different.Am i missing something?
This is what i do;
SortedList x = new SortedList();
x.Add(1, 1);
x.Add(2, 2);
x.Add(3, 3);
Properties.Settings.Default.lst = x;
Properties.Settings.Default.Save();
Regards,
Irfan
I wanted to save a simple collection in Settings.Settings but i am not able
to retrieve it.
Although no errors while saving it but no value are retrieved either.
Do i have to do something different.Am i missing something?
This is what i do;
SortedList x = new SortedList();
x.Add(1, 1);
x.Add(2, 2);
x.Add(3, 3);
Properties.Settings.Default.lst = x;
Properties.Settings.Default.Save();
Regards,
Irfan