OrderedDictionary<TKey,TValue>.GetAt(Int32) 方法

定义

获取指定索引处的键/值对。

public:
 System::Collections::Generic::KeyValuePair<TKey, TValue> GetAt(int index);
public System.Collections.Generic.KeyValuePair<TKey,TValue> GetAt (int index);
member this.GetAt : int -> System.Collections.Generic.KeyValuePair<'Key, 'Value>
Public Function GetAt (index As Integer) As KeyValuePair(Of TKey, TValue)

参数

index
Int32

要获取的对的从零开始的索引。

返回

指定索引处的元素。

例外

index 小于 0 或大于或等于 Count

适用于