I have a list of type object like so: List <Sentence> sentences = new List<Sentence>();
and the list contains various strings/sentences that I want to display on a listbox, however, everytime I try to display that list, the listbox displays (Collection)
What I have: listBox1.Items.Add(sentences);
Is there a way to convert that object to a string so that the text/sentence in the list is readable on the listbox?
The contents of a sentence structure is only a string variable.

Sentenceclass structure.