public List <SpellingError> ComprehensiveCheckImpl(string text) { IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); return((errors != null) ? errors.ToList(this, text, false, true) : null); }
private List <SpellingError> CheckImpl(string text) { IEnumSpellingError errors = _speller.Value.Check(text); return((errors != null) ? errors.ToList(this, text, false, true) : null); }