IDictionary<TKey,TValue>.Values Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene ICollection<T> contenente i valori in 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)
Valore della proprietà
Interfaccia ICollection<T> contenente i valori nell'oggetto che implementa l'interfaccia IDictionary<TKey,TValue>.
Esempio
Nell'esempio di codice seguente viene illustrato come enumerare i valori solo usando la Values proprietà .
Questo codice fa parte di un esempio più grande che può essere compilato ed eseguito. Vedere 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
Commenti
L'ordine dei valori restituiti ICollection<T> non è specificato, ma è garantito che sia lo stesso ordine delle chiavi corrispondenti nella ICollection<T> proprietà restituita.Keys