Table of Contents

Method FindFirstAnagram

Namespace
Gamelogic.Words
Assembly
Gamelogic.Words.dll

FindFirstAnagram(string)

public Word FindFirstAnagram(string source)

Parameters

source string

Returns

Word

FindFirstAnagram(Word)

Find one anagram of a given source string

public Word FindFirstAnagram(Word source)

Parameters

source Word

The source string. May include spaces, but not other non-alphabet characters

Returns

Word

The first discovered anagram of source, or null if no anagrams exist

FindFirstAnagram(string, bool)

public Word FindFirstAnagram(string source, bool phrases)

Parameters

source string
phrases bool

Returns

Word

FindFirstAnagram(Word, bool)

Find one anagram of a given source string, optionally returning phrases

public Word FindFirstAnagram(Word source, bool phrases)

Parameters

source Word

The source string. May include spaces, but not other non-alphabet characters

phrases bool

Whether to return phrases as well as single words

Returns

Word

The first discovered anagram of source, or null if no anagrams exist