I have updated net framework to 4.8 from 4.5 and noticing Richtextbox is not parsing certain tags in rtf like \colortbl, \stylesheet and so on
All I am doing is passing rtf text to richtextbox to retrieve text from it. Rtf has certain tags listed above which doesn't get parsed in 4.8 framework but it gets parsed when I downgrade to 4.5
var rtb = new RichTextBox {Rtf = t}; string s = rtb.Text;
DLL used for richtextbox control is System.Windows.Form dll
Any idea how to over come this problem?