コード例 #1
0
        private static void CheckSciNotation(DD x, String expectedStr)
        {
            var xStr = x.ToSciNotation();

            Console.WriteLine("Sci Notation: " + xStr);
            Assert.AreEqual(xStr, expectedStr);
        }
コード例 #2
0
        private static void CheckSciNotation(DD x, string expectedStr)
        {
            string xStr = x.ToSciNotation();

            // System.Console.WriteLine("Sci Notation: " + xStr);
            Assert.AreEqual(xStr, expectedStr);
        }
コード例 #3
0
	private static void CheckSciNotation(DD x, String expectedStr) {
		var xStr = x.ToSciNotation();
		Console.WriteLine("Sci Notation: " + xStr);
		Assert.AreEqual(xStr, expectedStr);
	}