'Declaration
Function GetSuggestions( _ ByVal word As String, _ ByVal maxSuggestions As Integer _ ) As IEnumerable(Of String)
'Usage
Dim instance As ISpellChecker Dim word As String Dim maxSuggestions As Integer Dim value As IEnumerable(Of String) value = instance.GetSuggestions(word, maxSuggestions)
IEnumerable<string> GetSuggestions( string word, int maxSuggestions )
IEnumerable<String^>^ GetSuggestions( String^ word, int maxSuggestions )
Parameters
- word
- Word to suggest alternatives for.
- maxSuggestions
- Maximum number of suggestions to provide.
Return Value
A list of suggestions for the word parameter.