ImmutableHashSet.Create 方法

定义

重载

Create<T>()

创建一个空的不可变哈希集。

Create<T>(IEqualityComparer<T>)

创建使用指定相等性比较器的空不可变哈希集。

Create<T>(ReadOnlySpan<T>)

创建预填充了指定项的新不可变集合。

Create<T>(T)

创建包含指定项的新不可变哈希集。

Create<T>(T[])

创建包含指定项数组的新不可变哈希集。

Create<T>(IEqualityComparer<T>, ReadOnlySpan<T>)

创建预填充了指定项的新不可变集合。

Create<T>(IEqualityComparer<T>, T)

创建一个包含指定项并为集类型使用指定相等性比较器的新不可变哈希集。

Create<T>(IEqualityComparer<T>, T[])

创建一个包含指定集合中的项并为集类型使用指定相等性比较器的新不可变哈希集。

Create<T>()

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建一个空的不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create();
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> ();
static member Create : unit -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) () As ImmutableHashSet(Of T)

类型参数

T

要存储在不可变哈希集内的项的类型。

返回

空的不可变哈希集。

适用于

Create<T>(IEqualityComparer<T>)

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建使用指定相等性比较器的空不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
static member Create : System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (equalityComparer As IEqualityComparer(Of T)) As ImmutableHashSet(Of T)

类型参数

T

不可变哈希集内的项的类型。

参数

equalityComparer
IEqualityComparer<T>

用于比较集内对象相等性的对象。

返回

空的不可变哈希集。

适用于

Create<T>(ReadOnlySpan<T>)

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建预填充了指定项的新不可变集合。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (ReadOnlySpan<T> items);
static member Create : ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (items As ReadOnlySpan(Of T)) As ImmutableHashSet(Of T)

类型参数

T

集合存储的项的类型。

参数

items
ReadOnlySpan<T>

要预填充的项。

返回

新的不可变集合。

适用于

Create<T>(T)

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建包含指定项的新不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(T item);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (T item);
static member Create : 'T -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (item As T) As ImmutableHashSet(Of T)

类型参数

T

不可变哈希集内的项的类型。

参数

item
T

用于预先填充哈希集的项。

返回

包含指定项的新不可变哈希集。

适用于

Create<T>(T[])

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建包含指定项数组的新不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (params T[] items);
static member Create : 'T[] -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (ParamArray items As T()) As ImmutableHashSet(Of T)

类型参数

T

不可变哈希集内的项的类型。

参数

items
T[]

一个数组,其中包含用于预先填充哈希集的项。

返回

包含指定项的新不可变哈希集。

适用于

Create<T>(IEqualityComparer<T>, ReadOnlySpan<T>)

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建预填充了指定项的新不可变集合。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer, ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T>? equalityComparer, ReadOnlySpan<T> items);
static member Create : System.Collections.Generic.IEqualityComparer<'T> * ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (equalityComparer As IEqualityComparer(Of T), items As ReadOnlySpan(Of T)) As ImmutableHashSet(Of T)

类型参数

T

集合存储的项的类型。

参数

equalityComparer
IEqualityComparer<T>

相等比较器。

items
ReadOnlySpan<T>

要预填充的项。

返回

新的不可变集合。

适用于

Create<T>(IEqualityComparer<T>, T)

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建一个包含指定项并为集类型使用指定相等性比较器的新不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer, T item);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T> equalityComparer, T item);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T>? equalityComparer, T item);
static member Create : System.Collections.Generic.IEqualityComparer<'T> * 'T -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (equalityComparer As IEqualityComparer(Of T), item As T) As ImmutableHashSet(Of T)

类型参数

T

不可变哈希集内的项的类型。

参数

equalityComparer
IEqualityComparer<T>

用于比较集内对象相等性的对象。

item
T

用于预先填充哈希集的项。

返回

包含指定项的新不可变哈希集。

适用于

Create<T>(IEqualityComparer<T>, T[])

Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs
Source:
ImmutableHashSet.cs

创建一个包含指定集合中的项并为集类型使用指定相等性比较器的新不可变哈希集。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableHashSet<T> ^ Create(System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer, ... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T> equalityComparer, params T[] items);
public static System.Collections.Immutable.ImmutableHashSet<T> Create<T> (System.Collections.Generic.IEqualityComparer<T>? equalityComparer, params T[] items);
static member Create : System.Collections.Generic.IEqualityComparer<'T> * 'T[] -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function Create(Of T) (equalityComparer As IEqualityComparer(Of T), ParamArray items As T()) As ImmutableHashSet(Of T)

类型参数

T

存储在不可变哈希集内的项的类型。

参数

equalityComparer
IEqualityComparer<T>

用于比较集内对象相等性的对象。

items
T[]

一个数组,其中包含用于预先填充哈希集的项。

返回

包含指定项的新不可变哈希集。

适用于