private static bool SelectOne(Dictionary <string, List <string> > info, string x) { foreach (var Ls in info.Values) { if (Ls.Contains(x)) { return(false); } } return(true); }