コード例 #1
0
        static void Main(string[] args)
        {
            LedLight light1 = new LedLight(ConsoleColor.Cyan);
            LedLight light2 = new LedLight(ConsoleColor.Red);
            LedLight light3 = new LedLight(ConsoleColor.Yellow);

            // TODO

            Random random = new Random((int)DateTime.Now.Ticks);

            while (true)
            {
                // TODO

                // ICommand command = ...; <--- Create SetCommand with random parameters

                Thread.Sleep(random.Next(5000));
            }
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: wincubate/agilent
        static void Main(string[] args)
        {
            LedLight light1 = new LedLight(ConsoleColor.Cyan);
            LedLight light2 = new LedLight(ConsoleColor.Red);
            LedLight light3 = new LedLight(ConsoleColor.Yellow);

            ISetCommandFactory factory = new SetCommandFactory(light1, light2, light3);

            LoggingSwitch invoker = new LoggingSwitch();

            Random random = new Random((int)DateTime.Now.Ticks);

            while (true)
            {
                ICommand command = factory.CreateCommand(
                    random.Next(3),
                    random.Next(100)
                    );
                invoker.Execute(command);

                Thread.Sleep(random.Next(5000));
            }
        }