using System.Collections.Generic;
public static class Countries
public static Dictionary<string, int> Get() {
return new Dictionary<string, int>() {
public static void Main()
var countryCodeInt = Countries.Get().Single(c => c.Key == "NL").Value;
Console.WriteLine(countryCodeInt);