我正在使用this tutorial翻译成C#,所以我有以下代码部分:
List<string> lst = new List<string>();
//AutoComplete collection that will help to filter keep the records.
AutoCompleteStringCollection MySource = new AutoCompleteStringCollection();
我收到AutoCompleteStringCollection的错误说:
错误1找不到类型或命名空间名称'AutoCompleteStringCollection'(您是否缺少using指令或程序集引用?)
我已经包含了alrdeady
Using System.Windows.Forms;
我还添加了对Integration dll文件的引用。
这个类通常应该在哪里。
有什么想法吗?