Answers for "how to get duplicate values in c# list"

C#
7

c# find duplicates in list of strings

var list = new List<string>();
list.GroupBy(n => n).Any(c => c.Count() > 1);
Posted by: Guest on June-08-2020

Code answers related to "how to get duplicate values in c# list"

C# Answers by Framework

Browse Popular Code Answers by Language