Example #1
0
        private static void Main(string[] args)
        {
            //Rectangle rectangle = new Rectangle();
            //rectangle.setWidth(3);
            //rectangle.setWidth(4);
            //rectangle.getArea();

            //Point3D point3D = new Point3D(1, 2, 3);

            //FunOverload obj = new FunOverload();
            //obj.SetName("barack");
            //obj.SetName("barack ", " obama ");

            //Printdata p = new Printdata();
            //p.print(5);
            //p.print(500.263);
            //p.print("Hello C++");
            //Console.ReadKey();

            //StudentAndTeacherTest test = new StudentAndTeacherTest();
            //test.Main();

            AlbumTest albumTest = new AlbumTest();

            albumTest.Test();
        }
Example #2
0
        static void Main(string[] args)
        {
            // Task 1
            StudentAndTeacherTest test1 = new StudentAndTeacherTest();

            test1.Main();

            // Task 2
            AlbumTest test2 = new AlbumTest();

            test2.Main();

            // Task 3
            SquareTest test3 = new SquareTest();

            test3.Main();

            Console.ReadKey();
        }