设置中的System.Collections.arraylist在哪里

时间:2016-04-28 20:27:00

标签: c#

我想这是一个愚蠢的问题,但也许有人可以帮助我......

我试图在项目的“设置”标签中找到System.Collections.arraylist,但似乎无法找到它。我在这里错过了什么吗?

我想将一个列表框(以Arraylist的形式)保存到Settings中,所以我需要保存一个类型的参数:System.Collections.arraylist。

 Properties.Settings.Default.listbox_items = new ArrayList(PkgFilesListbox.Items);

所以,基本上,listbox_items的类型应该是System.Collections.Array,对吗?

但我无法在VS2012的“设置”标签中找到它(在项目属性中)。我有bool,int,string,System等,但在系统下,没有收藏。

就像here

一样

1 个答案:

答案 0 :(得分:0)

从类型下拉框中选择“浏览...”:

Select browse...

将打开一个对话框 - 您应该能够在那里找到System.ArrayList.Collections。 (如果你不能,只需在对话框底部的文本框中输入 - 无论如何都可能更容易)

Enter the type name