using System.Collections.Generic; public static class HashSetExtensions { public static void EnsureContains(this HashSet @this, T item, bool containsOrNot) where T : notnull { if (containsOrNot) { @this.Add(item); } else { @this.Remove(item); } } }