コード例 #1
0
ファイル: TestAgent.cs プロジェクト: Fedorm/core-master
        public TestAgent(ViewProxy commands)
        {
            _viewProxy = commands;

            var thread = new Thread(WaitCommand);
            thread.IsBackground = true;
            thread.Start();
        }
コード例 #2
0
ファイル: TestAgent.cs プロジェクト: Fedorm/core-master
        public TestAgent(ViewProxy commands)
        {
            _viewProxy = commands;

            var thread = new Thread(WaitCommand);

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