Esempio n. 1
0
        /// <summary>This is an internal API.</summary>
        /// <returns>A text string.</returns>
        public override string ToString()
        {
            switch (this.integerMode)
            {
            case IntegerMode.SmallValue:
                return(FastInteger.IntToString(this.smallValue));

            case IntegerMode.LargeValue:
                return(this.largeValue.ToString());

            default: return(String.Empty);
            }
        }