コード例 #1
0
        public Utility.Match FuzzyMatch(String searchKey)
        {
            var s      = new FuzzySearch(searchKey, SearchContent);
            var result = s.FindBestMatch();

            UpdateFromFuzzy(result);
            return(result);
        }