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.

[366 byte] By [A.Russell] at [2007-12-26]
# 1
I can't reproduce this problem, it copies a trailing end-of-line character just fine. Beware that the RTB control uses '\n' (a linefeed) as the end-of-line character, not a carriage return ('\r').
nobugz at 2007-9-4 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
your problem soved?
gqlu at 2007-9-4 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3

No, it isn't. Do you have the same problem?

I think I need to take a screen shot from the debugger to show that the final return isn't included in the Rtf, but is in the Text string. In the meatime, since I didn't get an answer I have used a work around.

It was copied after doing a .SelectAll() on the RTB with the text to be copied, if that helps.

A.Russell at 2007-9-4 > top of Msdn Tech,Windows Forms,Windows Forms General...