Remove all elements from a HashSet in CSharp
Description
The following code shows how to remove all elements from a HashSet.
Example
using System;/*www . ja v a 2s. c o m*/
using System.Collections.Generic;
public class MainClass{
public static void Main(String[] argv){
HashSet<int> evenNumbers = new HashSet<int>();
for (int i = 0; i < 5; i++){
evenNumbers.Add(i * 2);
}
Console.WriteLine(evenNumbers.Count);
evenNumbers.Clear();
Console.WriteLine(evenNumbers.Count);
}
}
The code above generates the following result.