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

定义

获取由指定的键编制索引的值的集合。

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>

由指定键编制索引的值的集合。

实现

示例

以下示例演示如何使用 Item[] 将 索引直接编制到 中 Lookup<TKey,TElement>。 此代码示例是为 Lookup<TKey,TElement> 类提供的一个更大示例的一部分。

// 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)

注解

此索引属性提供使用以下语法为 中 Lookup<TKey,TElement> 特定值集合编制索引的功能: myLookup[key] 在 Visual C# 中或在 myLookup(key) Visual Basic 中。 key如果在集合中找不到 ,则返回空序列。

适用于