SortedDictionary<TKey,TValue>.Keys Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene una colección que contiene las claves de SortedDictionary<TKey,TValue>.
public:
property System::Collections::Generic::SortedDictionary<TKey, TValue>::KeyCollection ^ Keys { System::Collections::Generic::SortedDictionary<TKey, TValue>::KeyCollection ^ get(); };
public System.Collections.Generic.SortedDictionary<TKey,TValue>.KeyCollection Keys { get; }
member this.Keys : System.Collections.Generic.SortedDictionary<'Key, 'Value>.KeyCollection
Public ReadOnly Property Keys As SortedDictionary(Of TKey, TValue).KeyCollection
Valor de propiedad
SortedDictionary<TKey,TValue>.KeyCollection que contiene las claves de SortedDictionary<TKey,TValue>.
Ejemplos
En el ejemplo de código siguiente se muestra cómo enumerar las claves del diccionario mediante la Keys propiedad y cómo enumerar las claves y los valores del diccionario.
Este código forma parte de un ejemplo más grande que se puede compilar y ejecutar. Vea SortedDictionary<TKey,TValue>.
// To get the keys alone, use the Keys property.
SortedDictionary<string, string>.KeyCollection keyColl =
openWith.Keys;
// The elements of the KeyCollection are strongly typed
// with the type that was specified for dictionary keys.
Console.WriteLine();
foreach( string s in keyColl )
{
Console.WriteLine("Key = {0}", s);
}
' To get the keys alone, use the Keys property.
Dim keyColl _
As SortedDictionary(Of String, String).KeyCollection = _
openWith.Keys
' The elements of the KeyCollection are strongly typed
' with the type that was specified for dictionary keys.
Console.WriteLine()
For Each s As String In keyColl
Console.WriteLine("Key = {0}", s)
Next s
// When you use foreach to enumerate dictionary elements,
// the elements are retrieved as KeyValuePair objects.
Console.WriteLine();
foreach( KeyValuePair<string, string> kvp in openWith )
{
Console.WriteLine("Key = {0}, Value = {1}",
kvp.Key, kvp.Value);
}
' When you use foreach to enumerate dictionary elements,
' the elements are retrieved as KeyValuePair objects.
Console.WriteLine()
For Each kvp As KeyValuePair(Of String, String) In openWith
Console.WriteLine("Key = {0}, Value = {1}", _
kvp.Key, kvp.Value)
Next kvp
Comentarios
Las claves de SortedDictionary<TKey,TValue>.KeyCollection se ordenan según la Comparer propiedad y están en el mismo orden que los valores asociados en el SortedDictionary<TKey,TValue>.ValueCollection devuelto por la Values propiedad .
El devuelto SortedDictionary<TKey,TValue>.KeyCollection no es una copia estática; en su lugar, SortedDictionary<TKey,TValue>.KeyCollection hace referencia a las claves del original SortedDictionary<TKey,TValue>. Por lo tanto, los cambios en el SortedDictionary<TKey,TValue> objeto se seguirán reflejando en SortedDictionary<TKey,TValue>.KeyCollection.
Obtener el valor de esta propiedad es una operación O(1).