A cross-platform library designed to provide seamless access to global country data for .NET applications without making any http calls. Our aim is to simplify the process of integrating standardised global data into your applications, making it an ideal tool for developers who require international data.
nuget downloads | |
builds | |
code coverage | |
code quality |
- π Get global country data [CountryName, CountryPhone, Region, CountryFlag, PhoneCode ]
- π³οΈβπ Get country data by ISO 3166 country code
- π© Get country flag by ISO 3166 country code
- πΊοΈ Get country region by ISO 3166 country code
- βοΈ Get country phone code by ISO 3166 country code
PM> Install-Package CountryData.Standard -Version 1.4.1
> dotnet add package CountryData.Standard --version 1.4.1
CountryData.Standard is a robust, production-grade package designed for a wide range of .NET applications. Whether you're developing a .NET Core Web API, a console application, a .NET MAUI or Xamarin app, a Blazor project, or a mobile app, this library is built to seamlessly integrate with your project.
To get started quickly, check out our Sample Code. This section provides practical examples of how to use the library in various types of projects.
For more detailed instructions and comprehensive information about the library, please refer to our Documentation. This resource offers in-depth guidance on how to effectively use the CountryData.Standard library in your projects.
The CountryData.Standard library provides a set of methods that allow you to retrieve country data, flags, regions, and phone codes. The following table lists the available methods and their descriptions.
Method | Description |
---|---|
GetCountryData() |
Returns all country data including region, short code, and country name. |
GetCountryByCode(string shortCode) |
Returns a single country's data by its short code. |
GetCountryEmojiFlag(string shortCode) |
Gets the flag of the country, represented as an emoji, by the country's short code. |
GetRegionByCountryCode(string shortCode) |
Selects and returns a list of regions for a particular country identified by its short code. |
GetCountries() |
Gets the list of all country names. |
GetPhoneCodeByCountryShortCode(string shortCode) |
Returns a single country's phone code by its short code. |
GetCountryByPhoneCode(string phoneCode) |
Returns country data for the country associated with the specified phone code. |
GetCurrencyCodesByCountryCode(string shortCode) |
Returns a list of currency codes for a specific country identified by its short code. |
GetCountryByCurrencyCode(string currencyCode) |
Returns a list of countries that use the specified currency code. |
GetCountryCode(string countryName) |
Returns the country code for a specific country name. |
//loads all Country Data via the constructor (You can initialize this once as a singleton)
var helper = new CountryHelper();
var countries = helper.GetCountries();
foreach (var country in countries)
Console.WriteLine(country);
var regions = helper.GetRegionByCountryCode("GH");
foreach (var region in regions)
Console.WriteLine(region.Name);
GetCountryData()
returns an IEnumerable<Country>
which can be querried with Lambda for a more flexible usage.
//example1
var data = helper.GetCountryData();
//get list of countries by their Names
var countries = data.Select(c => c.CountryName).ToList();
foreach (var country in countries)
Console.WriteLine(country);
//example 2
data.Where(x => x.CountryShortCode == "US")
.Select(r=>r.Regions).FirstOrDefault()
.ToList();
This example demonstrates how to retrieve a country with a specific phone code using the GetCountryByPhoneCode
method. In this case, we're fetching the country with the phone code "+233".
var CountryName = helper.GetCountryByPhoneCode("+233");
Console.WriteLine(CountryName);
For a list of supported ISO-3166-1 country codes, PhoneCode, Flags, ISO and , Unicode please refer to the Country Details file.
Contributions are welcome! We value your input and want to make contributing to this project as easy and transparent as possible. Please see our Contributing Guide for more details.
We are committed to fostering a welcoming and respectful community for everyone. Our Code of Conduct
outlines the standards of behavior expected from contributors and maintainers. This document helps ensure that the community around our project is inclusive and collaborative. Please refer to our code of conduct for more information.
- Support for ISO 3166 Country A3 Codes
- Country ShortCode Enums
This project is licensed under the terms of the LICENSE.