Supposing the referenced List below contains 2 elements:
List
Dim Countries = From c In List _ Select New With { .Country = c.Country
There is the LINQ operator named Distinct(), which you can call like so:
Dim Countries = (From c In List _ Select c.Country, c.CountryID).Distinct()
More information on Distinct here