예제 #1
0
            public List <SpellingError> ComprehensiveCheckImpl(string text)
            {
                IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text);

                return((errors != null) ? errors.ToList(this, text, false, true) : null);
            }
예제 #2
0
            private List <SpellingError> CheckImpl(string text)
            {
                IEnumSpellingError errors = _speller.Value.Check(text);

                return((errors != null) ? errors.ToList(this, text, false, true) : null);
            }