Usuń powtarzane elementy na jedności listy

using System.Linq;
list = list.Distinct().ToList();
Inquisitive Impala