Could anyone please help me to create RTF from string in C#?
I save all the formats (bold, italic, etc) in a customized class.
Jerry
As the simplest option, you can use RichTextBoxControl in winforms application.
richTextBox1.SaveFile(@"C:\temp\test.rtf", RichTextBoxStreamType.RichText);