I am using this tutorial translated into C# so I have the following codepart:
List<string> lst = new List<string>();
//AutoComplete collection that will help to filter keep the records.
AutoCompleteStringCollection MySource = new AutoCompleteStringCollection();
I get an error for AutoCompleteStringCollection saying:
Error 1 The type or namespace name 'AutoCompleteStringCollection' could not be found (are you missing a using directive or an assembly reference?)
I have alrdeady included
Using System.Windows.Forms;
I have also added a reference to the Integration dll file.
which is where this class should normally be.
Any ideas?