Beispiel #1
0
 public static void Main()
 {
     try
     {
         InterfaceMenu interfaceMenu = new InterfaceMenu();
         DelegateMenu  delegateMenu  = new DelegateMenu();
         interfaceMenu.ShowMenu();
         delegateMenu.ShowMenu();
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }
        public static void Main()
        {
            InterfaceMenu interfaceMenu = new InterfaceMenu(2);

            interfaceMenu.ShowInterfaceMenu();
        }
Beispiel #3
0
 public static void Main()
 {
     InterfaceMenu.Start();
     DelegateMenu.Start();
 }