using System.Collections.Generic;
public static void Main(string[] args)
HashSet<int> hash = new HashSet<int>();
Console.WriteLine("HashSet: ");
Console.WriteLine("Count: " + hash.Count);
HashSet<int> hash2 = new HashSet<int>();
Console.WriteLine("Apakah value hash2 ada didalam hash 1 ? = " + hash2.IsSubsetOf(hash));
Console.WriteLine("Count: " + hash.Count);