Answers for "c# only add unique items to list"

C#
1

how to get unique list in c#

using(var dataModel = new DataModel())
{
  var classes = dataModel.Attributes.Where(a => a.Field == "Class").Select(a => a.Key).Distinct().ToList();
}
Posted by: Guest on January-07-2021
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 "c# only add unique items to list"

C# Answers by Framework

Browse Popular Code Answers by Language