2

Possible Duplicate:
How to convert a string to RTF in C#?

I was wondering if there is an easy way convert a string to RTF in C#.

Not only the standard characters but special characters i.e. as €ƒ…†‡ to.

Community
  • 1
  • 1
Torben L.
  • 73
  • 1
  • 10

1 Answers1

1

Use the RichTextBox control. You can set it's Text property to a string then get back it's Rtf property.

Matt Burland
  • 44,552
  • 18
  • 99
  • 171