while trying to convert HTML to RTF through Below Code
string html = "...."; // html content
RichTextBox rtbTemp = new RichTextBox();
WebBrowser wb = new WebBrowser();
wb.Navigate("about:blank");
wb.Document.Write(html);
wb.Document.ExecCommand("SelectAll", false, null);
wb.Document.ExecCommand("Copy", false, null);
rtbTemp.SelectAll();
rtbTemp.Paste();
here Document.Write(html); and Document.ExecCommand getting error here Which using
required to overcome this am new to this Please guide us
example: using System.Windows.Controls;
here is full code image full