Hashtable.Values Property is used to get an ICollection containing the values in the Hashtable.
Syntax:
CSharp CSharp
public virtual System.Collections.ICollection Values { get; }
Return Value: This property returns an ICollection containing the values in the Hashtable.
Note:
- The order of values in the ICollection is unspecified.
- Retrieving the value of this property is an O(1) operation.
// C# code to get an ICollection containing
// the values in the Hashtable.
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Hashtable
Hashtable myTable = new Hashtable();
// Adding elements in Hashtable
myTable.Add("g", "geeks");
myTable.Add("c", "c++");
myTable.Add("d", "data structures");
myTable.Add("q", "quiz");
// Get a collection of the values
ICollection c = myTable.Values;
// Displaying the contents
foreach(string str in c)
Console.WriteLine(str + myTable[str]);
}
}
Output:
Example 2:
data structures c++ quiz geeks
// C# code to get an ICollection containing
// the values in the Hashtable.
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Hashtable
Hashtable myTable = new Hashtable();
// Adding elements in Hashtable
myTable.Add("India", "Country");
myTable.Add("Chandigarh", "City");
myTable.Add("Mars", "Planet");
myTable.Add("China", "Country");
// Get a collection of the values
ICollection c = myTable.Values;
// Displaying the contents
foreach(string str in c)
Console.WriteLine(str + myTable[str]);
}
}
Output:
Reference:
City Country Country Planet