I have 2 lists. The first is a CountryId-list that can look like this
036
208
999
The seccond list is a coundryId to Name list that can look like this:
036, AUSTRALIA
208, DENMARK
380, ITALY
578, NORWAY
The result shall be like this:
AUSTRALIA
DENMARK
UNKNOWN ID (999)
How can I make a linq query that solves this?