.NET version of the MisaMino bot (via DLL importing).
Use MisaMinoNET from NuGet in your project.
using MisaMinoNET;
// Listen for search completion
MisaMino.Finished += ...;
// Start search in the background
MisaMino.FindMove(...);
// Abort search prematurely
MisaMino.Abort();
// Access results of last search
MisaMino.LastSolution;
// Utilize pathfinder
MisaMino.FindPath(...);