Sudoku game library written in C# qirh source and tests (NUnit) available. Provides hint tracking and allows for custom classes to be added for advanced solving techniques to be applied without directly modifying the library's code. An UndoManager class is provided for automatic undo/redo support, and basic file saving and loading to and from an XML format is implemented as well.
Also includes a custom control to drop on forms to take care of the display and basic key handling, and a sample WinForms application to demonstrate the basic functionality of the library and control.
Source is currently being developed in Visual Studio 2015, although it does not rely heavily on C# 6.0 features and could probably be converted to an earlier version with little trouble.
External references include NUnit 2.6.4 and Moq 4.2 (used in the test library projects only) and Ninject 3.2 (could be written out easily).
Features
- Ability to solve puzzles, including adding custom solving techniques to engine without code modification
- Manage user hints for each cell
- Automatic undo/redo support
- Load and save data to files
- Custom control display games in WinForm applications
- C# source and unit tests