I have a list of strings and need to find which strings match a given input value. what is the most efficient way (memory vs execution speed) for me to store this list of strings and be able to search through it? The start-up and loading of the list of strings isnt important, but the response time for searching is.
should i be using a List or HashSet or just a basic string[] or something else?
StringCollectionis heinously slow. It uses anArrayListunder the covers. – vcsjones Dec 28 '11 at 15:35StringCollectionis not fast. – Jason Dec 28 '11 at 15:36