ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.dumpSentences C# (CSharp) Method

dumpSentences() private method

Dumps sentences in the para to the debug output
private dumpSentences ( Paragraph para ) : void
para Paragraph paragraph
return void
        private void dumpSentences(Paragraph para)
        {
            foreach (Sentence sentence in para.Sentences)
            {
                Log.Debug("** NEXT SENTENCE **");
                String text = textBox1.Text.Substring(sentence.Start, sentence.Length);
                Log.Debug(text);
            }
        }