Enumerable.ToHashSet メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ToHashSet<TSource>(IEnumerable<TSource>) |
IEnumerable<T> から HashSet<T> を作成します。 |
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
|
ToHashSet<TSource>(IEnumerable<TSource>)
- ソース:
- ToCollection.cs
- ソース:
- ToCollection.cs
- ソース:
- ToCollection.cs
IEnumerable<T> から HashSet<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)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
HashSet<T> の作成元の IEnumerable<T>。
戻り値
HashSet<TSource>
入力シーケンスから選択された TSource
型の値を格納する HashSet<T>。
例外
source
は null
です。
こちらもご覧ください
適用対象
ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
- ソース:
- ToCollection.cs
- ソース:
- ToCollection.cs
- ソース:
- ToCollection.cs
comparer
を使用して IEnumerable<T>から HashSet<T> を作成し、キーを比較します。
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)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
HashSet<T> の作成元の IEnumerable<T>。
- comparer
- IEqualityComparer<TSource>
キーを比較する IEqualityComparer<T>。
戻り値
HashSet<TSource>
入力シーケンスから選択された TSource
型の値を格納する HashSet<T>。
例外
source
は null
です。
こちらもご覧ください
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET