I\'m reading a comma-delimited list of strings from a config file. I need to check whether another string is in that list. For example:
\"apple,banana,cheese\"
(","+listString+",").Contains(","+testWord+",");
but not straight-forward, too.