Just loop over your list - the anonymous type is anonymous - but still a strict type! You can get intellisense and should be able to access the fields Country and CountryID with no problem at all:
foreach(var c in yourListOfCountries)
{
string countryName = c.Country;
int countryID = c.CountryID;
}
Marc
marc_s
2009-10-14 16:39:33