Answers for "how to get distinct values from list in c#"

C#
1

c# distinct array of objects by values

var uniquePersons = persons.GroupBy(p => p.Email)
                           .Select(grp => grp.First())
                           .ToArray();
Posted by: Guest on April-06-2020
1

c# get distinct values all fields from list

if (!IsPostBack) {  
       GridView1.DataSource = GetProducts()
                              .GroupBy(o => new { o.Make, o.Model })
                              .Select(o => o.FirstOrDefault());
       GridView1.DataBind();
}
Posted by: Guest on November-25-2020

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

C# Answers by Framework

Browse Popular Code Answers by Language