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

ToString() public method

Returns a string that represents this instance.
/// The format string was a . /// /// An index from the format string is either less than zero or greater than or equal to the number of arguments. ///
public ToString ( ) : string
return string
        public override string ToString()
        {
            // ReSharper disable once AssignNullToNotNullAttribute
            return string.Format(Resources.CurrencyInfo_ToString, FullName, Code, ISONumber);
        }
#endif