Method FindAnagrams
FindAnagrams(Word)
Find anagrams of a given source string
IEnumerable<Word> FindAnagrams(Word source)
Parameters
source
WordThe source string. May include spaces, but not other non-alphabet characters
Returns
- IEnumerable<Word>
A list of anagrams of
source
FindAnagrams(Word, bool)
Find phrase anagrams of a given source string. Phrase anagrams may return multple words that, together, consist of all the letters in the source string
IEnumerable<Word> FindAnagrams(Word source, bool phrases)
Parameters
source
WordThe source string. May include spaces, but not other non-alphabet characters
phrases
boolWhether to return phrases as well as single words
Returns
- IEnumerable<Word>
A list of anagrams of
source