using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UtilityClasses { public class HashSetUsingEquatable where T: IEquatable { private Dictionary mBackend = new Dictionary(); } }