IDictionary<TKey,TValue>.Values Propriété

Définition

Obtient ICollection<T> contenant les valeurs de IDictionary<TKey,TValue>.

public:
 property System::Collections::Generic::ICollection<TValue> ^ Values { System::Collections::Generic::ICollection<TValue> ^ get(); };
public System.Collections.Generic.ICollection<TValue> Values { get; }
member this.Values : System.Collections.Generic.ICollection<'Value>
Public ReadOnly Property Values As ICollection(Of TValue)

Valeur de propriété

ICollection<TValue>

ICollection<T> contenant les valeurs de l'objet qui implémente IDictionary<TKey,TValue>.

Exemples

L’exemple de code suivant montre comment énumérer des valeurs seules à l’aide de la Values propriété .

Ce code fait partie d’un exemple plus large qui peut être compilé et exécuté. Consultez System.Collections.Generic.IDictionary<TKey,TValue>.

// To get the values alone, use the Values property.
ICollection<String^>^ icoll = openWith->Values;

// The elements of the ValueCollection are strongly typed
// with the type that was specified for dictionary values.
Console::WriteLine();
for each( String^ s in icoll )
{
    Console::WriteLine("Value = {0}", s);
}
// To get the values alone, use the Values property.
ICollection<string> icoll = openWith.Values;

// The elements of the ValueCollection are strongly typed
// with the type that was specified for dictionary values.
Console.WriteLine();
foreach( string s in icoll )
{
    Console.WriteLine("Value = {0}", s);
}
' To get the values alone, use the Values property.
Dim icoll As ICollection(Of String) = openWith.Values

' The elements of the ValueCollection are strongly typed
' with the type that was specified for dictionary values.
Console.WriteLine()
For Each s As String In  icoll
    Console.WriteLine("Value = {0}", s)
Next s

Remarques

L’ordre des valeurs dans le retourné ICollection<T> n’est pas spécifié, mais il est garanti qu’il s’agit du même ordre que les clés correspondantes dans le ICollection<T> retourné par la Keys propriété.

S’applique à

Voir aussi