I guess it's a silly question, but maybe someone could help me...
I'm trying to find System.Collections.arraylist in the Settings tab of the project and can't seem to find it. Am I missing something here?
I want to save a listbox (in the form of Arraylist) to the Settings so I need to save a parameter of type: System.Collections.arraylist.
Properties.Settings.Default.listbox_items = new ArrayList(PkgFilesListbox.Items);
So, basically, listbox_items
should be of type System.Collections.Array, right?
But I can't find it in VS2012 in the Settings tab (in the project properties). I have bool, int, string, System, etc., but under System, there's no Collections.
just like here