System::Collections::Generic::SortedSet::SortedSet constructor

SortedSet::SortedSet() constructor

RTTI information.

System::Collections::Generic::SortedSet<T>::SortedSet()

Remarks

Creates empty set.

See Also

SortedSet::SortedSet(const SharedPtr<IComparer<T>>&) constructor

Creates empty set that uses the specified equality comparer.

System::Collections::Generic::SortedSet<T>::SortedSet(const SharedPtr<IComparer<T>> &comparer)
ParameterTypeDescription
comparerconst SharedPtr<IComparer<T>>&Comparer object to associate with SortedSet.

See Also

SortedSet::SortedSet(const SharedPtr<IEnumerable<T>>&) constructor

Creates SortedSet based on enumerable values.

System::Collections::Generic::SortedSet<T>::SortedSet(const SharedPtr<IEnumerable<T>> &items)

See Also

SortedSet::SortedSet(int) constructor

Creates empty set with specified capacity.

System::Collections::Generic::SortedSet<T>::SortedSet(int capacity)

See Also