In This Article

CountryCurrencyMapping Class

A mapping between a Country and a Currency.

public class CountryCurrencyMapping
Inheritance:
object object

Constructors

CountryCurrencyMapping(string, string)

A mapping between a Country and a Currency.

public CountryCurrencyMapping(string countryCode, string currencyCode)
Parameter Type Description
countryCode string

The 2 letter Country code.

currencyCode string

The 3 letter Currency code.

Properties

CountryCode

The 2 letter country code for this mapping.

public string CountryCode { get; }

Property Value

string

CurrencyCode

The 3 letter currency code for this mapping.

public string CurrencyCode { get; }

Property Value

string

Mappings

The global collection of CountryCurrencyMapping objects.

public static DeferrableObservableCollection<CountryCurrencyMapping> Mappings { get; }

Property Value

DeferrableObservableCollection<CountryCurrencyMapping>

Inherited Members

Extension Methods