C# Класс WinRTXamlToolkit.Controls.AutoCompleteTextBox.PrefixSuggestion

Algorithm implementation for AutoCompleteTextBox that scores suggestions from the dictionary based on the Damerau-Levenshtein distance.
Наследование: AutoCompletable
Показать файл Открыть проект

Открытые методы

Метод Описание
GetSuggestedWords ( string wordToSuggest, ICollection suggestionDictionary ) : IList

Gets a list of suggested word completions for the specified word, given a dictionary of words.

Приватные методы

Метод Описание
GetSuggestionPrefixScore ( string wordToSuggest, string suggestion ) : ScoredString

Описание методов

GetSuggestedWords() публичный Метод

Gets a list of suggested word completions for the specified word, given a dictionary of words.
public GetSuggestedWords ( string wordToSuggest, ICollection suggestionDictionary ) : IList
wordToSuggest string Word/string to get suggestions for.
suggestionDictionary ICollection Dictionary of words to select suggestions from.
Результат IList