struct CurrencyValue
Describes money, in a certain currency
public string Currency
The name of the currency
public long Value
The value without decimals. This is in the smallest denomination of the currency.
public static CurrencyValue op_Addition( CurrencyValue m1, CurrencyValue m2 )
😔 No documentation found.
public static CurrencyValue op_Subtraction( CurrencyValue m1, CurrencyValue m2 )
😔 No documentation found.
public bool Equals( CurrencyValue other )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public string Format( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public CurrencyValue( long price, string currency )
😔 No documentation found.