コード例 #1
0
        public void InvokeRun(SudokuPlayer player)
        {
            if (player == null)
            {
                throw new ArgumentNullException("player");
            }

            Dispatcher.BeginInvoke((Func <Window, int>)Run, player);
        }
コード例 #2
0
 public SudokuPlayerController(Definition.Sudoku originSudoku, Definition.Sudoku playingSudoku)
 {
     this.window = SudokuPlayer.Create(originSudoku, playingSudoku);
 }