public void InvokeRun(SudokuPlayer player) { if (player == null) { throw new ArgumentNullException("player"); } Dispatcher.BeginInvoke((Func <Window, int>)Run, player); }
public SudokuPlayerController(Definition.Sudoku originSudoku, Definition.Sudoku playingSudoku) { this.window = SudokuPlayer.Create(originSudoku, playingSudoku); }