WPF, C# - Making Intellisense/Autocomplete list, fastest way to filter list of strings
- by user559548
Hello everyone,
I'm writing an Intellisense/Autocomplete like the one you find in Visual Studio. It's all fine up until when the list contains probably 2000+ items.
I'm using a simple LINQ statement for doing the filtering:
var filterCollection = from s in listCollection
where…