how can i convert an html-encoded string like the one below to a normal string? (it's Hello World)
mystr="Hello World";
i am using Windows phone sdk.
how can i convert an html-encoded string like the one below to a normal string? (it's Hello World)
mystr="Hello World";
i am using Windows phone sdk.
HtmlDecode in System.Net
Just give it the string you want to convert
http://msdn.microsoft.com/de-de/library/7c5fyk1k%28v=vs.110%29.aspx
here another way to do it