using System.Collections.Generic;
public static void Main()
var dict = new Dictionary<int, string>();
var hs = new HashSet<string>(dict.Values);
var list = new List<dynamic>()
new { Id = 0, Name = "Zeroth", PropertyYouWantToCheck = "Zero" },
new { Id = 1, Name = "First", PropertyYouWantToCheck = "One" },
new { Id = 2, Name = "Second", PropertyYouWantToCheck = "Two" },
new { Id = 3, Name = "Third", PropertyYouWantToCheck = "Three" },
new { Id = 4, Name = "Fourth", PropertyYouWantToCheck = "Four" },
var filteredList = list.Where(i => hs.Contains(i.PropertyYouWantToCheck));
Console.WriteLine(string.Join(", ", filteredList.Select(fl => fl.Name)));