ILookup<TKey,TElement>.Item[TKey] Property

Definition

Gets the IEnumerable<T> sequence of values indexed by a specified key.

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)

Parameters

key
TKey

The key of the desired sequence of values.

Property Value

IEnumerable<TElement>

The IEnumerable<T> sequence of values indexed by the specified key.

Applies to