示例#1
0
        public TestAgent(ViewProxy commands)
        {
            _viewProxy = commands;

            var thread = new Thread(WaitCommand);
            thread.IsBackground = true;
            thread.Start();
        }
示例#2
0
        public TestAgent(ViewProxy commands)
        {
            _viewProxy = commands;

            var thread = new Thread(WaitCommand);

            thread.IsBackground = true;
            thread.Start();
        }