Answers for "unique items in list c#"

C#
0

unique items in list c#

var uniqueItemsList = yourList.Distinct().ToList();
Posted by: Guest on October-19-2020
0

c# list with only unique items

If your requirements are to have no duplicates, you should be using a HashSet.
HashSet.Add will return false when the item already exists (if that even matters to you).
Posted by: Guest on October-08-2020

Code answers related to "unique items in list c#"

C# Answers by Framework

Browse Popular Code Answers by Language