Exemplo n.º 1
0
        public void ToSentences_Valid(string Content)
        {
            var sentences = _summarizer.ToSentences(Content)
                            .ToArray();

            Assert.NotEmpty(sentences);
        }
Exemplo n.º 2
0
 public IEnumerable <string> ToSentences(string Content, IEnumerable <string> StopWords = null)
 {
     return(_summarizer.ToSentences(Content, StopWords));
 }