I have a customers List(of String) on which I am trying to find the duplicate customers.
customers
If Not customers.Count = customers.Distinct.ToList.Coun
customers = customers.GroupBy(Function(m) m) _ .Where(Function(g) g.Count() > 1) _ .Select(Function(g) g.Key).ToList