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?
|
4 | deleted 45 characters in body | ||
|
You can use a RichTextbox to convert RTF to text or vice versa.
Edit: Why has this been modded down? |
||||
|
3 | added 45 characters in body | ||
|
You can use a RichTextbox to convert RTF to text or vice versa.
Edit: Why has this been modded down? |
||||
|
2 | Corrrected property name. | ||
|
You can use a RichTextbox to convert RTF to text or vice versa.
|
||||
|
1 |
|
||