using System.Collections.Generic;
public static void Main()
HashSet<int> EmployeeIds = new HashSet<int>();
Console.WriteLine("Total count of the EmployeeIds= " + EmployeeIds.Count);
foreach (int i in EmployeeIds)
int[] myIntArray = new int[4] { 11, 12, 13, 11 };
Console.WriteLine("Total length of the myIntArray= " + myIntArray.Length);
foreach (int i in myIntArray)