This question is locked. New answers and comments are not allowed.
Greetings,
I have a jumplist that i want filtered by a text box as the user enters information. Using the a simple string list I was hoping I could use the code below to filter and ignore case. It doesn't seem to like the StringComparer for some reason.
Any suggestions?
I have a jumplist that i want filtered by a text box as the user enters information. Using the a simple string list I was hoping I could use the code below to filter and ignore case. It doesn't seem to like the StringComparer for some reason.
GenericFilterDescriptor<string> filterByText = new GenericFilterDescriptor<string>(days => days.Contains(txtFilter.Text,StringComparer.InvariantCultureIgnoreCase))Any suggestions?