System.Currency.FromOACurrency C# (CSharp) Méthode

FromOACurrency() public static méthode

public static FromOACurrency ( long cy ) : Currency
cy long
Résultat Currency
        public static Currency FromOACurrency(long cy){
            return new Currency(cy, 0);
        }

Usage Example

Exemple #1
0
 public static Decimal FromOACurrency(long cy)
 {
     return(Currency.ToDecimal(Currency.FromOACurrency(cy)));
 }