What is the best way to check if a string (of ints) is within a list of string?E.g. Check whether '1' is in (1,2,9,10,11,15)I had something like:\[code\] if(listofString.Contains(radiolist.SelectedValue))\[/code\]where the radiolist.SelectedValue is an integer stored in string form.I don't think the above would work because the '1' would probably match '11' in the string.Any ideas?Thanks!