show/hide this revision's text 4 deleted 45 characters in body

You can use a RichTextbox to convert RTF to text or vice versa.

RichTextBox r = new RichTextBox();
r.Rtf = strRTFString;
Console.WriteLine(r.Text);

Edit: Why has this been modded down?

show/hide this revision's text 3 added 45 characters in body

You can use a RichTextbox to convert RTF to text or vice versa.

RichTextBox r = new RichTextBox();
r.Rtf = strRTFString;
Console.WriteLine(r.Text);

Edit: Why has this been modded down?

show/hide this revision's text 2 Corrrected property name.

You can use a RichTextbox to convert RTF to text or vice versa.

RichTextBox r = new RichTextBox();
r.RtfText r.Rtf = strRTFString;
Console.WriteLine(r.Text);
show/hide this revision's text 1