public static void run()
        {
            TestClassLibrary.Hello hello = new TestClassLibrary.Hello();
            hello.print();
            Console.Write(", ");
            TestClassLibrary.World world = new TestClassLibrary.World();
            world.print();
            Console.WriteLine(" !!!");

            Console.WriteLine("1 + 2 = " + TestClassLibrary.Adder.add(1, 2));
        }
Пример #2
0
        public static void run()
        {
            TestClassLibrary.Hello hello = new TestClassLibrary.Hello();
            hello.print();
            Console.Write(", ");
            TestClassLibrary.World world = new TestClassLibrary.World();
            world.print();
            Console.WriteLine(" !!!");

            Console.WriteLine("1 + 2 = " + TestClassLibrary.Adder.add(1, 2));
        }