CurrencyConverter.Convert Method

Converts specified amount from one currency to another
public virtual double Convert( 
double amount
byte fromCurrencyId
byte toCurrencyId 
)
This language is not supported or no code example is available.
public:  
virtual double Convert( 
double amount
Byte fromCurrencyId
Byte toCurrencyId 
)
This language is not supported or no code example is available.
public function Convert( 
amount : double
fromCurrencyId : byte
toCurrencyId : byte 
) : double;
This language is not supported or no code example is available.

Parameters

amount
double

The amount.

fromCurrencyId
byte

From currency identifier.

toCurrencyId
byte

To currency identifier.

Return Value

double

System.Double.

Remarks
 
This method doesn't perform any conversion and should be overriden in a user defined currency converter class

In this article

Definition