liuaoran 35e0add9b2 compdfkit(win) | 1 سال پیش | |
---|---|---|
.. | ||
lib | 1 سال پیش | |
.signature.p7s | 1 سال پیش | |
LICENSE.md | 1 سال پیش | |
Nager.Country.4.0.0.nupkg | 1 سال پیش | |
README.md | 1 سال پیش | |
icon.png | 1 سال پیش | |
readme.txt | 1 سال پیش |
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..