Gets a list of suggestions for a misspelled word.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

C#
IEnumerable<string> GetSuggestions(
	string word,
	int maxSuggestions
)
Visual Basic
Function GetSuggestions ( _
	word As String, _
	maxSuggestions As Integer _
) As IEnumerable(Of String)

Parameters

word
Type: System..::..String
Word to suggest alternatives for.
maxSuggestions
Type: System..::..Int32
Maximum number of suggestions to provide.

Return Value

A list of suggestions for the word parameter.

See Also