I'm writing a small app using VS Express 2013 and C# for Windows Phone 8.1:
Using an AutoSuggestBox tool, I'd like the user's input compare with a List of strings, however the strings in list contain accented characters, like "č,š,ť" and I want to show the user even the results containing "č" when he types "c". How can I do that?
What I have:
var resultList = SuggestionsList.Where(s => s.Contains(suggestions.Text));
suggestions.ItemsSource = resultList;
Where "SuggestionsList" is the original list of strings and "suggestions" is the name of the autosuggestbox.
Thank you.