using System;
using System.Linq;
public class Program
{
public static void Main()
string[] list = {"aa", "aa", "aa", "bb", "cc", "cc", "dd", "ee", "ee", "ff", "gg", "hh"};
string[] result = list.Where(x => list.Where(y => y == x).Count() > 1).Distinct().ToArray();
Console.WriteLine(String.Join(", ", result));
}