ConcurrentHashSetT(IEnumerableT) - конструктор
Initializes a new instance of the
ConcurrentHashSetT
class that contains elements copied from the specified
IEnumerableT, has the default concurrency
level, has the default initial capacity, and uses the default comparer for the item type.
Пространство имён: Tessa.Platform.CollectionsСборка: Tessa (в Tessa.dll) Версия: 4.1.4+115fce864fec7bf37ea70396e6660596be991d3b
public ConcurrentHashSet(
IEnumerable<T> collection
)
Public Sub New (
collection As IEnumerable(Of T)
)
public:
ConcurrentHashSet(
IEnumerable<T>^ collection
)
new :
collection : IEnumerable<'T> -> ConcurrentHashSet
Параметры
- collection IEnumerableT
- The IEnumerableT whose elements are copied to
the new
ConcurrentHashSetT.
| ArgumentNullException | collection is a null reference. |