ACAT.Extensions.Default.SpellCheckers.SpellChecker.Lookup C# (CSharp) 메소드

Lookup() 공개 메소드

Looks up the spelling list for the indicated word and returns the correct spelling if found. Returns empty string if it didn't find the word.
public Lookup ( String word ) : String
word String word to lookup
리턴 String
        public String Lookup(String word)
        {
            var replacement = String.Empty;
            if (_wordList != null)
            {
                _wordList.TryGetValue(word, out replacement);
            }

            return replacement;
        }