I have a dictionary of string people (key) and string addresses (value). I want to have an if statement that returns true if any key in my dictionary contains the substring
if(dict.Keys.Any(k=>k.Contains("anders"))) { //do stuff }