Beispiel #1
0
        public static void Main()
        {
            DelegateExercises delegateExercises = new DelegateExercises();

            delegateExercises.Method3();
            Console.ReadLine();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            DelegateExercises a = new DelegateExercises();

            a.Method3();
            Console.ReadLine();
        }