Eliminar elementos repetidos en una lista de la lista

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