liuaoran 5940182013 compdfkit(win) - 1.13 update | 8 months ago | |
---|---|---|
.. | ||
lib | 8 months ago | |
.signature.p7s | 8 months ago | |
LICENSE.md | 8 months ago | |
Nager.Country.3.1.1.nupkg | 8 months ago | |
README.md | 8 months ago | |
icon.png | 8 months ago | |
readme.txt | 8 months ago |
The Worldwirde Country Informations are available over the nuget package. The collection contains the Informations for 250 Countries.
If you need the translations of the countries you will find in the further nuget package Nager.Country.Translation
ICountryProvider countryProvider = new CountryProvider();
var countryInfo = countryProvider.GetCountry(Alpha2Code.DE);
//countryInfo.CommonName -> Germany
//countryInfo.Alpha3Code -> DEU
//countryInfo.NumericCode -> 276
//countryInfo.Region -> Europe
//countryInfo.SubRegion -> WesternEurope
//countryInfo...
ICountryProvider countryProvider = new CountryProvider();
var countryInfo = countryProvider.GetCountryByName("Germany");
//countryInfo.Alpha2Code -> DE
//countryInfo.Alpha3Code -> DEU
//countryInfo.NumericCode -> 276
//countryInfo.Region -> Europe
//countryInfo.SubRegion -> WesternEurope
//countryInfo..