Code :
news = (from New myNew in new News() select myNew).Distinct().ToList();
but this Distinct is for \"object\" with same values.
Short hand solution
var vNews = News() .GroupBy(p => p.Month, (key, p) => p.FirstOrDefault()) .ToList();