myDATATools.getCountries Method

Get the ISO 3166 Country Codes for all countries around the world. 
ISO Country Codes are used in the SendInvoices class for the fields issuer.country and counterpart.country.
Public Function getCountries() As Dictionary(Of String, Object)
This language is not supported or no code example is available.
public Dictionary<string, object> getCountries()
This language is not supported or no code example is available.

Return Value

Dictionary<string, object>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, object> result = mdt.getCountries();
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim result As Dictionary(Of String, Object) = mdt.getCountries()
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition