예제 #1
0
파일: Program.cs 프로젝트: war-man/Scuola
        static void Main(string[] args)
        {
            Console.WriteLine("A long long time ago, in a galaxy far away...");

            var mum = new Mum("Leila");
            var dad = new Dad("Han Solo");

            mum.MakeBaby(dad, "Kylo Ren");
            mum.Child.StartCrying();

            Console.Read();
        }
예제 #2
0
파일: Program.cs 프로젝트: war-man/Scuola
        static void Main(string[] args)
        {
            Console.WriteLine("A long long time ago, in a galaxy far away...");

            var mum = new Mum("Leila");
            var dad = new Dad("Han Solo");

            mum.MakeBaby(dad, "Kylo Ren");
            mum.Child.StartsCrying();
            mum.Child.StartsCrying();
            mum.Child.StartsCrying();
            mum.Child.Cries += b =>
            {
                Console.WriteLine($"The Force feels the evil of {mum.Child.Name}");
                Console.WriteLine($"The Force balances the evil with the birth of Rey");
            };
            mum.Child.StartsCrying();

            Console.Read();
        }