I have a large list of 1600 autocomplete options for my textbox in Visual Studio. What is the best way to add those options to the textbox custom autocomplete list?
I currently have all the settings in my text editor separated by semicolons. Should I just copy that into VS as a string as add it to the list by splitting it into an array with the semicolons as the delimiter? Would it be better to convert the code into a string array like: new string[x]{"setting1","setting2","setting3","setting4"}... etc? Should I store it in the application settings or in a new file and put it as a resource? Are all these essentially the same thing?