private static string path; // C:\Users\Luis Laptop\source\repos\HelloWorld\HelloWorld\stundenplan.xml
        public static void StundenPlan()
        {
            //Settings();
            path = @"C:\Users\Luis Laptop\source\repos\HelloWorld\HelloWorld\stundenplan.xml";
            string exit = "";

            while (exit != "exit")
            {
                StundenplanAuswerter.AuswaertenByDay();
                exit = Console.ReadLine();
            }
        }
Example #2
0
        static void Main(string[] args)
        {
            StundenplanAuswerter sa = new StundenplanAuswerter();

            StundenplanAuswerter.StundenPlan();
        }