using System; using System.Collections.Generic; namespace SearchBox { public class StopwordTester { private HashSet words = new HashSet(); public StopwordTester(IEnumerable inWords) { foreach (string word in inWords) words.Add(word); } public bool IsStopword(string word) { return words.Contains(word); } } }