Is there an AddUnique method similar to Addrange() for alist in C#
One choice is to add them and remove the repeated ones: var list = new List<Car>(); list.AddRange(GetGreenCars()); list.AddRange(GetBigCars()); list.AddRange(GetSmallCars()); list = list.Distinct().ToList();