string x = "&Microsoft<?xml version=";
string y = System.Web.HttpUtility.HtmlDecode(x);
Console.WriteLine(y);
Console.ReadLine();
Now the y value is &Microsoft<?xml version=
In this case the web.httputility.htmldecode not working
I am expecting result is &Microsoft<?xml version=
Please reply if there is answer for this.