Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 519 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 519 Bytes

ScrabbleWordChecker

Tool for checking words against the SOWPODS (European) and TWL (US) Scrabble dictionaries.

Installing via NuGet

Install-Package ScrabbleWordChecker

How To Use

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);