C# 클래스 WinRTXamlToolkit.Controls.AutoCompleteTextBox.PrefixSuggestion

Algorithm implementation for AutoCompleteTextBox that scores suggestions from the dictionary based on the Damerau-Levenshtein distance.
상속: AutoCompletable
파일 보기 프로젝트 열기: xyzzer/WinRTXamlToolkit

공개 메소드들

메소드 설명
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