public static void Main()
        {
            DelegateExercises delegateExercises = new DelegateExercises();

            delegateExercises.Method3();
            Console.ReadLine();
        }
Ejemplo n.º 2
0
        public static void Main()
        {
            DelegateExercises delegateExercises = new DelegateExercises();

            try
            {
                delegateExercises.Method3();
                Console.ReadLine();
            }
            catch (System.Exception ex)
            {
                System.Console.WriteLine("Exception Occurred.");
                Console.ReadLine();
            }
        }
Ejemplo n.º 3
0
        public static void Main()
        {
            DelegateExercises delegateExercises = new DelegateExercises();

            delegateExercises.Method3();
        }
Ejemplo n.º 4
0
        static void Main(string[] args)
        {
            DelegateExercises delegateExercises = new DelegateExercises();

            delegateExercises.Method2();
        }