我正在使用翻译成 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 指令或程序集引用?)
我已经包括在内
Using System.Windows.Forms;
我还添加了对集成 dll 文件的引用。
这是这个类通常应该在的地方。
有任何想法吗?