In This Article

CountryCurrencyMapping Class

A mapping between a Country and a Currency.

public class CountryCurrencyMapping
Inheritance:
Object Object

Constructors

CountryCurrencyMapping(String, String)

Initializes an instance of the CountryCurrencyMapping class.

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

Gets the 2 letter country code for this mapping.

public string CountryCode { get; }

Property Value

String:

The 2 letter country code for this mapping.

CurrencyCode

Gets the 3 letter currency code for this mapping.

public string CurrencyCode { get; }

Property Value

String:

The 3 letter currency code for this mapping.

Mappings

Gets the global collection of CountryCurrencyMapping objects.

public static DeferrableObservableCollection<CountryCurrencyMapping> Mappings { get; }

Property Value

DeferrableObservableCollection<CountryCurrencyMapping>:

A collection of CountryCurrencyMapping objects.

Inherited Members