WebApplications.Utilities.Globalization.CurrencyInfo.CurrencyInfo C# (CSharp) Method

CurrencyInfo() public method

Initialize a new instance of CurrencyInfo.
public CurrencyInfo ( [ code, int isoNumber, [ exponent, [ fullName, bool isLatest ) : System
code [ The ISO Code.
isoNumber int The ISO Number.
exponent [ The exponent, which is the number of decimals available in the currency.
fullName [ The currency's full name.
isLatest bool if set to the currency appears in the latest official ISO 4217 list.
return System
        public CurrencyInfo(
            [NotNull] string code,
            int isoNumber,
            [CanBeNull] int? exponent,
            [NotNull] string fullName,
            bool isLatest)
        {
            Code = code;
            ISONumber = isoNumber;
            Exponent = exponent;
            FullName = fullName;
            IsLatest = isLatest;
        }