IDictionary.Keys 属性

获取 ICollection 对象,它包含 IDictionary 对象的键。

**命名空间:**System.Collections
**程序集:**mscorlib(在 mscorlib.dll 中)

语法

声明
ReadOnly Property Keys As ICollection
用法
Dim instance As IDictionary
Dim value As ICollection

value = instance.Keys
ICollection Keys { get; }
property ICollection^ Keys {
    ICollection^ get ();
}
/** @property */
ICollection get_Keys ()
function get Keys () : ICollection

属性值

ICollection 对象,它包含 IDictionary 对象的键。

备注

未指定返回的 ICollection 对象中的键的顺序,但可以保证它与由 Values 属性返回的 ICollection 中的相应值具有相同的顺序。

示例

下面的代码示例演示如何实现 Keys 属性。此代码示例是为 IDictionary 类提供的一个更大示例的一部分。

Public ReadOnly Property Keys() As ICollection Implements IDictionary.Keys
    Get

        ' Return an array where each item is a key.
        Dim keyArray() As Object = New Object(ItemsInUse - 1) {}
        Dim n As Integer
        For n = 0 To ItemsInUse - 1
            keyArray(n) = items(n).Key
        Next n

        Return keyArray
    End Get
End Property
public ICollection Keys
{
    get
    {
        // Return an array where each item is a key.
        Object[] keys = new Object[ItemsInUse];
        for (Int32 n = 0; n < ItemsInUse; n++)
            keys[n] = items[n].Key;
        return keys;
    }
}
public:
    virtual property ICollection^ Keys
    {
        ICollection^ get()
        {
            // Return an array where each item is a key.
            array<Object^>^ keys = gcnew array<Object^>(itemsInUse);
            for (int i = 0; i < itemsInUse; i++)
            {
                keys[i] = items[i]->Key;
            }
            return keys;
        }
    }

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

IDictionary 接口
IDictionary 成员
System.Collections 命名空间
ICollection 接口