Ejemplo n.º 1
0
        static void Main()
        {
            StudentSystem studentSystem =
                new StudentSystem(new ConsoleIoEngine());

            studentSystem.ParseCommands();
        }
Ejemplo n.º 2
0
        static void Main()
        {
            StudentSystem studentSystem =
                new StudentSystem(new ConsoleIoEngine());

            studentSystem.ParseCommands();

            Color color = Color.Yellow;

            Console.WriteLine(color);
            Console.WriteLine((int)color);
            color = Color.Yellow;
            if (color == Color.Yellow)
            {
                Console.WriteLine("Yellow!!!");
            }
        }