Beispiel #1
0
        private static void Test01d()
        {
            IntegerConverter conv = new IntegerConverter();

            Console.WriteLine("{0}: ", Int32.MaxValue);
            conv.Number = Int32.MaxValue;
            conv.ConvertDualBCD();
            Console.WriteLine(conv.Result);
        }