Enumerable.ToHashSet Metodo
Definizione
Overload
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T> usando |
ToHashSet<TSource>(IEnumerable<TSource>) |
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T>.Creates a HashSet<T> from an IEnumerable<T>. |
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T> usando comparer
per confrontare le chiavi.Creates a HashSet<T> from an IEnumerable<T> using the comparer
to compare keys.
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
.The type of the elements of source
.
Parametri
- source
- IEnumerable<TSource>
Oggetto IEnumerable<T> da cui creare un oggetto HashSet<T>.An IEnumerable<T> to create a HashSet<T> from.
- comparer
- IEqualityComparer<TSource>
Oggetto IEqualityComparer<T> per confrontare le chiavi.An IEqualityComparer<T> to compare keys.
Restituisce
- HashSet<TSource>
Oggetto HashSet<T> che contiene valori di tipo TSource
selezionati dalla sequenza di input.A HashSet<T> that contains values of type TSource
selected from the input sequence.
Si applica a
ToHashSet<TSource>(IEnumerable<TSource>)
Crea un oggetto HashSet<T> da un oggetto IEnumerable<T>.Creates a HashSet<T> from an 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
.The type of the elements of source
.
Parametri
- source
- IEnumerable<TSource>
Oggetto IEnumerable<T> da cui creare un oggetto HashSet<T>.An IEnumerable<T> to create a HashSet<T> from.
Restituisce
- HashSet<TSource>
Oggetto HashSet<T> che contiene valori di tipo TSource selezionati dalla sequenza di input.A HashSet<T> that contains values of type TSource selected from the input sequence.