/// <summary> /// Initializes a new instance of the <see cref="IndexableSet{T}"/> class. /// </summary> public IndexableSet() { _hashset = new HashSet <T>(); _array = new DynamicArray <T>(); }