liuaoran 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
..
lib 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
.signature.p7s 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
LICENSE.md 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
Nager.Country.3.1.1.nupkg 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
README.md 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
icon.png 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây
readme.txt 5940182013 compdfkit(win) - 1.13 update 8 tháng trước cách đây

README.md

Nager.Country

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

Code Examples

Get CountryInfo - Germany via Alpha2Code

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...

Get CountryInfo - Germany via CommonName

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..