Esempio n. 1
0
        static void Main(string[] args)
        {
            Bibliotheque b     = Bibliotheque.CreateBibliotheque("bibliotheque.txt");
            char         choix = ' ';

            while (choix != 'z')
            {
                choix = Menu();
                Traiter(choix, b);
                Console.ReadLine();
                Console.Clear();
            }
        }