Lookup<TKey,TElement>.Item[TKey] Vlastnost

Definice

Získá kolekci hodnot indexovaných zadaným klíčem.

public:
 property System::Collections::Generic::IEnumerable<TElement> ^ default[TKey] { System::Collections::Generic::IEnumerable<TElement> ^ get(TKey key); };
public System.Collections.Generic.IEnumerable<TElement> this[TKey key] { get; }
member this.Item('Key) : seq<'Element>
Default Public ReadOnly Property Item(key As TKey) As IEnumerable(Of TElement)

Parametry

key
TKey

Klíč požadované kolekce hodnot.

Hodnota vlastnosti

IEnumerable<TElement>

Kolekce hodnot indexovaných zadaným klíčem.

Implementuje

Příklady

Následující příklad ukazuje použití Item[] k indexování přímo do objektu Lookup<TKey,TElement>. Tento příklad kódu je součástí většího příkladu Lookup<TKey,TElement> pro třídu .

// Select a collection of Packages by indexing directly into the Lookup.
IEnumerable<string> cgroup = lookup['C'];
' Select a collection of Packages by indexing directly into the Lookup.
Dim cgroup As System.Collections.Generic.IEnumerable(Of String) = lookup("C"c)

Poznámky

Tato indexovaná vlastnost umožňuje indexovat konkrétní kolekci hodnot v objektu Lookup<TKey,TElement> pomocí následující syntaxe: myLookup[key] v jazyce Visual C# nebo myLookup(key) Visual Basic. Pokud se v kolekci key nenajde, vrátí se prázdná sekvence.

Platí pro