Tool to check words against the TWL and SOWPODS Scrabble dictionaries.
$ dotnet add package ScrabbleWordCheckerTool for checking words against the SOWPODS (European) and TWL (US) Scrabble dictionaries.
Install-Package ScrabbleWordChecker
var checker = await ScrabbleWordChecker.CreateAsync();
// check "pyjamaed" in the SOWPODS dictionary: true
var sowpodResult = checker.Check("pyjamaed", ScrabbleDictionaryEnum.SOWPODS);
// check "pyjamaed" in the TWL dictionary: false
var twlResult = checker.Check("pyjamaed", ScrabbleDictionaryEnum.TWL);