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

GetOutOfDate() public method

Gets the out of date equivalent of this CurrencyInfo.
public GetOutOfDate ( ) : CurrencyInfo
return CurrencyInfo
        public CurrencyInfo GetOutOfDate()
        {
            return !IsLatest ? this : new CurrencyInfo(Code, ISONumber, Exponent, FullName, false);
        }