I have a List of countries, and I want to check if the selected item in a picker is in the list of countries.
e.g.
List<string> countries = new List<string> { "Austria", "Australia", "Bahrain" }
and I want to use something like (does not exist):
if(picker.SelectedItem.Contains(countries)) { //do something }