In this tutorial I will show you how to decode HTML character (eg: &,") in c#. Here, my string values contains HTML characters. But I need to convert to normal plain text.
Decode HTML characters in c#:
string mystring = "Question & Answers";
string a = System.Web.HttpUtility.HtmlDecode(mystring);
Result:
Question & Answers