/// <summary>
        /// Returns given number in given numeral system as string representation in
        /// exponent notation.
        /// </summary>
        public string Back_Parse_Force_Exponent_Mock_Test(double number, sbyte numeral_System_Type)
        {
            Back_Parser = new Back_Parser_Fascede(Number_Notation.Force_Exponent, numeral_System_Type, ",");

            // Act

            INumber Number = new Number(number);

            return(Back_Parser.Parse_Back(Number));
        }
Пример #2
0
        /// <summary>
        /// Returns given number in given numeral system as string representation in
        /// normalised scientific notation.
        /// </summary>
        public string Back_Parse_Scienfic_Normalized_Mock_Test(double number, sbyte numeral_System_Type)
        {
            Back_Parser = new Back_Parser_Fascede(Number_Notation.Scienfic_Normalized, numeral_System_Type, ",");

            // Act

            INumber Number = new Number(number);

            return(Back_Parser.Parse_Back(Number));
        }