Anyone have a quick method for de-duplicating a generic List in C#?
Installing the MoreLINQ package via Nuget, you can easily distinct object list by a property
IEnumerable distinctCatalogues = catalogues.DistinctBy(c => c.CatalogueCode);