4
Answers

Without using Distinct(), How to get Distinct List ?

I have a List of Objects,

var distinctList = someList.DistinctBy(x => x.Prop2).ToList();

Need to get distinct list without using distinct.

Answers (4)