RichTextBox.Rtf -include Final Carriage Return?
For a string with a carriage return at the end:
richTextBox2.Text = richTextBox1.Text; //text is copied verbatim with the carriage return
richTextBox2.Rtf = richTextBox1.Rtf; //The final carraige return is not copied over
Is there a wy to copy Rtf and keep any final return character? Carraiage returns anywhere else in the string are fine.

