Enumerable.ToHashSet Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ToHashSet<TSource>(IEnumerable<TSource>) |
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T>. |
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T> usando |
ToHashSet<TSource>(IEnumerable<TSource>)
- Origine:
- ToCollection.cs
- Origine:
- ToCollection.cs
- Origine:
- ToCollection.cs
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T>.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::HashSet<TSource> ^ ToHashSet(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Generic.HashSet<TSource> ToHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member ToHashSet : seq<'Source> -> System.Collections.Generic.HashSet<'Source>
<Extension()>
Public Function ToHashSet(Of TSource) (source As IEnumerable(Of TSource)) As HashSet(Of TSource)
Parametri di tipo
- TSource
Tipo degli elementi di source
.
Parametri
- source
- IEnumerable<TSource>
Oggetto IEnumerable<T> da cui creare un oggetto HashSet<T>.
Restituisce
Oggetto HashSet<T> che contiene valori di tipo TSource
selezionati dalla sequenza di input.
Eccezioni
source
è null
.
Vedi anche
Si applica a
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
- Origine:
- ToCollection.cs
- Origine:
- ToCollection.cs
- Origine:
- ToCollection.cs
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T> usando comparer
per confrontare le chiavi.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::HashSet<TSource> ^ ToHashSet(System::Collections::Generic::IEnumerable<TSource> ^ source, System::Collections::Generic::IEqualityComparer<TSource> ^ comparer);
public static System.Collections.Generic.HashSet<TSource> ToHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource>? comparer);
public static System.Collections.Generic.HashSet<TSource> ToHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource> comparer);
static member ToHashSet : seq<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Collections.Generic.HashSet<'Source>
<Extension()>
Public Function ToHashSet(Of TSource) (source As IEnumerable(Of TSource), comparer As IEqualityComparer(Of TSource)) As HashSet(Of TSource)
Parametri di tipo
- TSource
Tipo degli elementi di source
.
Parametri
- source
- IEnumerable<TSource>
Oggetto IEnumerable<T> da cui creare un oggetto HashSet<T>.
- comparer
- IEqualityComparer<TSource>
Oggetto IEqualityComparer<T> per confrontare le chiavi.
Restituisce
Oggetto HashSet<T> che contiene valori di tipo TSource
selezionati dalla sequenza di input.
Eccezioni
source
è null
.