var uniqueItemsList = yourList.Distinct().ToList();
using(var dataModel = new DataModel())
{
var classes = dataModel.Attributes.Where(a => a.Field == "Class").Select(a => a.Key).Distinct().ToList();
}
HashSet<T> uniqueList;
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).
Code Example |
---|
Csharp :: c# windows service .net core |
Csharp :: change text color wpf |
Csharp :: string stringbuilder c# |
Csharp :: c# stream |
Csharp :: unity rate |
Csharp :: unity destroy |
Csharp :: insert variables into a string C# |
Csharp :: convert array to list c# |
Csharp :: c# second last element |
Csharp :: google tradutor |
Csharp :: why doesnt the if command work in C# |
Csharp :: unity error cs1656 |
Csharp :: 0.8 dikali 0.8 |
Csharp :: come controllare se textbox è vuota c# |
Csharp :: convert foreach to linq c# |
Html :: html space |
Html :: default html template |
Html :: multipart form |
Html :: meta author |
Html :: pattern for email id in html |
Html :: center vertically and horizontally bootstrap 4 |
Html :: html body full height |
Html :: how to install jquery |
Html :: submit form on change |
Html :: <noscript<p title="</noscript<img src=x onerror=alert(1)" |
Html :: font awesome |
Html :: iframe pdf html5 |
Html :: html textarea |
Html :: mute video html |
Html :: allow only positive integer in input type number |