Enumerable.ToDictionary Metódus

Definíció

Túlterhelések

Name Description
ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> megadott kulcsválasztó és elemválasztó függvény alapján.

ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> adott kulcsválasztó függvény, egy összehasonlító és egy elemválasztó függvény alapján.

ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>)

Egy megadott kulcsválasztó függvény alapján hoz létre egy Dictionary<TKey,TValue>IEnumerable<T> értéket.

ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> adott kulcsválasztó függvényt és kulcs-összehasonlítót.

ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> megadott kulcsválasztó és elemválasztó függvény alapján.

public:
generic <typename TSource, typename TKey, typename TElement>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::Dictionary<TKey, TElement> ^ ToDictionary(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector, Func<TSource, TElement> ^ elementSelector);
public static System.Collections.Generic.Dictionary<TKey,TElement> ToDictionary<TSource,TKey,TElement>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector, Func<TSource,TElement> elementSelector);
static member ToDictionary : seq<'Source> * Func<'Source, 'Key> * Func<'Source, 'Element> -> System.Collections.Generic.Dictionary<'Key, 'Element>
<Extension()>
Public Function ToDictionary(Of TSource, TKey, TElement) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey), elementSelector As Func(Of TSource, TElement)) As Dictionary(Of TKey, TElement)

Típusparaméterek

TSource

A . elemeinek sourcetípusa.

TKey

A visszaadott keySelectorkulcs típusa.

TElement

A visszaadott elementSelectorérték típusa.

Paraméterek

source
IEnumerable<TSource>

An IEnumerable<T> , amelyből létrehoz egy Dictionary<TKey,TValue> .

keySelector
Func<TSource,TKey>

Egy függvény, amely minden elemből kinyer egy kulcsot.

elementSelector
Func<TSource,TElement>

Egy átalakítási függvény, amely eredményelem-értéket hoz létre az egyes elemekből.

Válaszok

Dictionary<TKey,TElement>

Olyan Dictionary<TKey,TValue> érték, amely a bemeneti sorozatból kiválasztott típusértékeket TElement tartalmazza.

Kivételek

source vagy keySelectorelementSelector az nullis.

-vagy-

keySelector a egy olyan kulcsot hoz létre, amely az null.

keySelector duplikált kulcsokat hoz létre két elemhez.

Megjegyzések

A ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>) metódus az alapértelmezett egyenlőség-összehasonlítóval Default hasonlítja össze a kulcsokat.

A következőre érvényes:

ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> adott kulcsválasztó függvény, egy összehasonlító és egy elemválasztó függvény alapján.

public:
generic <typename TSource, typename TKey, typename TElement>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::Dictionary<TKey, TElement> ^ ToDictionary(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector, Func<TSource, TElement> ^ elementSelector, System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public static System.Collections.Generic.Dictionary<TKey,TElement> ToDictionary<TSource,TKey,TElement>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector, Func<TSource,TElement> elementSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);
static member ToDictionary : seq<'Source> * Func<'Source, 'Key> * Func<'Source, 'Element> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.Dictionary<'Key, 'Element>
<Extension()>
Public Function ToDictionary(Of TSource, TKey, TElement) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey), elementSelector As Func(Of TSource, TElement), comparer As IEqualityComparer(Of TKey)) As Dictionary(Of TKey, TElement)

Típusparaméterek

TSource

A . elemeinek sourcetípusa.

TKey

A visszaadott keySelectorkulcs típusa.

TElement

A visszaadott elementSelectorérték típusa.

Paraméterek

source
IEnumerable<TSource>

An IEnumerable<T> , amelyből létrehoz egy Dictionary<TKey,TValue> .

keySelector
Func<TSource,TKey>

Egy függvény, amely minden elemből kinyer egy kulcsot.

elementSelector
Func<TSource,TElement>

Egy átalakítási függvény, amely eredményelem-értéket hoz létre az egyes elemekből.

comparer
IEqualityComparer<TKey>

Egy IEqualityComparer<T> a kulcsok összehasonlításához.

Válaszok

Dictionary<TKey,TElement>

Olyan Dictionary<TKey,TValue> érték, amely a bemeneti sorozatból kiválasztott típusértékeket TElement tartalmazza.

Kivételek

source vagy keySelectorelementSelector az nullis.

-vagy-

keySelector a egy olyan kulcsot hoz létre, amely az null.

keySelector duplikált kulcsokat hoz létre két elemhez.

Megjegyzések

Ha comparer igen null, akkor az alapértelmezett egyenlőség-összehasonlító Default a kulcsok összehasonlítására szolgál.

A következőre érvényes:

ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>)

Egy megadott kulcsválasztó függvény alapján hoz létre egy Dictionary<TKey,TValue>IEnumerable<T> értéket.

public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::Dictionary<TKey, TSource> ^ ToDictionary(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector);
public static System.Collections.Generic.Dictionary<TKey,TSource> ToDictionary<TSource,TKey>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector);
static member ToDictionary : seq<'Source> * Func<'Source, 'Key> -> System.Collections.Generic.Dictionary<'Key, 'Source>
<Extension()>
Public Function ToDictionary(Of TSource, TKey) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey)) As Dictionary(Of TKey, TSource)

Típusparaméterek

TSource

A . elemeinek sourcetípusa.

TKey

A visszaadott keySelectorkulcs típusa.

Paraméterek

source
IEnumerable<TSource>

An IEnumerable<T> , amelyből létrehoz egy Dictionary<TKey,TValue> .

keySelector
Func<TSource,TKey>

Egy függvény, amely minden elemből kinyer egy kulcsot.

Válaszok

Dictionary<TKey,TSource>

Kulcsokat Dictionary<TKey,TValue> és értékeket tartalmazó. Az egyes csoportok értékei ugyanabban a sorrendben vannak, mint a következőben:source

Kivételek

source vagy keySelector az null.

-vagy-

keySelector a egy olyan kulcsot hoz létre, amely az null.

keySelector duplikált kulcsokat hoz létre két elemhez.

Példák

Az alábbi példakód bemutatja, hogyan hozhat ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) létre kulcsválasztót Dictionary<TKey,TValue> .

class Package
{
    public string Company { get; set; }
    public double Weight { get; set; }
    public long TrackingNumber { get; set; }
}

public static void ToDictionaryEx1()
{
    List<Package> packages =
        new List<Package>
            { new Package { Company = "Coho Vineyard", Weight = 25.2, TrackingNumber = 89453312L },
              new Package { Company = "Lucerne Publishing", Weight = 18.7, TrackingNumber = 89112755L },
              new Package { Company = "Wingtip Toys", Weight = 6.0, TrackingNumber = 299456122L },
              new Package { Company = "Adventure Works", Weight = 33.8, TrackingNumber = 4665518773L } };

    // Create a Dictionary of Package objects,
    // using TrackingNumber as the key.
    Dictionary<long, Package> dictionary =
        packages.ToDictionary(p => p.TrackingNumber);

    foreach (KeyValuePair<long, Package> kvp in dictionary)
    {
        Console.WriteLine(
            "Key {0}: {1}, {2} pounds",
            kvp.Key,
            kvp.Value.Company,
            kvp.Value.Weight);
    }
}

/*
 This code produces the following output:

 Key 89453312: Coho Vineyard, 25.2 pounds
 Key 89112755: Lucerne Publishing, 18.7 pounds
 Key 299456122: Wingtip Toys, 6 pounds
 Key 4665518773: Adventure Works, 33.8 pounds
*/
Structure Package
    Public Company As String
    Public Weight As Double
    Public TrackingNumber As Long
End Structure

Sub ToDictionaryEx1()
    ' Create a list of Package values.
    Dim packages As New List(Of Package)(New Package() _
     {New Package With
      {.Company = "Coho Vineyard", .Weight = 25.2, .TrackingNumber = 89453312L},
      New Package With
      {.Company = "Lucerne Publishing", .Weight = 18.7, .TrackingNumber = 89112755L},
      New Package With
      {.Company = "Wingtip Toys", .Weight = 6.0, .TrackingNumber = 299456122L},
      New Package With
      {.Company = "Adventure Works", .Weight = 33.8, .TrackingNumber = 4665518773L}})

    ' Create a Dictionary that contains Package values,
    ' using TrackingNumber as the key.
    Dim dict As Dictionary(Of Long, Package) =
    packages.ToDictionary(Function(p) p.TrackingNumber)

    ' Display the results.
    Dim output As New System.Text.StringBuilder
    For Each kvp As KeyValuePair(Of Long, Package) In dict
        output.AppendLine("Key " & kvp.Key & ": " &
                      kvp.Value.Company & ", " &
                      kvp.Value.Weight & " pounds")
    Next
    Console.WriteLine(output.ToString())
End Sub

' This code produces the following output:
'
' Key 89453312: Coho Vineyard, 25.2 pounds
' Key 89112755: Lucerne Publishing, 18.7 pounds
' Key 299456122: Wingtip Toys, 6 pounds
' Key 4665518773: Adventure Works, 33.8 pounds

Megjegyzések

A ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) metódus az alapértelmezett egyenlőség-összehasonlítóval Default hasonlítja össze a kulcsokat.

A következőre érvényes:

ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>)

Létrehoz egy Dictionary<TKey,TValue>IEnumerable<T> adott kulcsválasztó függvényt és kulcs-összehasonlítót.

public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::Dictionary<TKey, TSource> ^ ToDictionary(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector, System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public static System.Collections.Generic.Dictionary<TKey,TSource> ToDictionary<TSource,TKey>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector, System.Collections.Generic.IEqualityComparer<TKey> comparer);
static member ToDictionary : seq<'Source> * Func<'Source, 'Key> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.Dictionary<'Key, 'Source>
<Extension()>
Public Function ToDictionary(Of TSource, TKey) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey), comparer As IEqualityComparer(Of TKey)) As Dictionary(Of TKey, TSource)

Típusparaméterek

TSource

A . elemeinek sourcetípusa.

TKey

A visszaadott keySelectorkulcsok típusa.

Paraméterek

source
IEnumerable<TSource>

An IEnumerable<T> , amelyből létrehoz egy Dictionary<TKey,TValue> .

keySelector
Func<TSource,TKey>

Egy függvény, amely minden elemből kinyer egy kulcsot.

comparer
IEqualityComparer<TKey>

Egy IEqualityComparer<T> a kulcsok összehasonlításához.

Válaszok

Dictionary<TKey,TSource>

Kulcsokat Dictionary<TKey,TValue> és értékeket tartalmazó. Az egyes csoportok értékei ugyanabban a sorrendben vannak, mint a következőben:source

Kivételek

source vagy keySelector az null.

-vagy-

keySelector a egy olyan kulcsot hoz létre, amely az null.

keySelector duplikált kulcsokat hoz létre két elemhez.

Megjegyzések

Ha comparer igen null, akkor az alapértelmezett egyenlőség-összehasonlító Default a kulcsok összehasonlítására szolgál.

A következőre érvényes: