Class CountriesForTaxPurposesConverter
Converter that translates between the string format of countries based on ISO-3166 and CountriesForTaxPurposes enum values.
public static class CountriesForTaxPurposesConverter
- Inheritance
-
CountriesForTaxPurposesConverter
- Inherited Members
Methods
ToEnum(string?)
Gets the CountriesForTaxPurposes enum value for the supplied country or space separated list of ISO-3166 countries, e.g., "GB-ENG GB-NIR".
public static CountriesForTaxPurposes ToEnum(string? iso3166Countries)
Parameters
iso3166Countries
stringSpace separated list of ISO-3166 countries.
Returns
- CountriesForTaxPurposes
Equivalent CountriesForTaxPurposes enum value.
Exceptions
- ArgumentException
Thrown if an invalid country value is supplied.
ToString(CountriesForTaxPurposes)
Gets the ISO-3166 sub-entity for the supplied country or countries enum value.
public static string ToString(CountriesForTaxPurposes countries)
Parameters
countries
CountriesForTaxPurposesInstance of CountriesForTaxPurposes specifying one or more countries with the UK.
Returns
- string
Space separated ISO-3166 countries list, e.g., "GB-ENG GB-NIR".