ILookup<TKey,TElement>.Item[TKey] 属性

定义

获取按指定键进行索引的值的 IEnumerable<T> 序列。

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)

参数

key
TKey

所需值序列的键。

属性值

IEnumerable<TElement>

按指定键进行索引的值的 IEnumerable<T> 序列。

适用于