Beispiel #1
0
        static void Main(string[] args)
        {
            First one = new First();

            one.MyInfo();

            Second two = new Second();

            two.Change();
            two.Sum();
            two.More();

            Console.ReadKey();
        }