Is there an equivalent to HttpUtility.HtmlDecode in WinRT? I'm developing a MetroStyle app and want to decode strings that came from a XML doc.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
According to this answer from a Microsoft employee, there's currently no replacement for HtmlDecode in the WinRT that's included in the Windows 8 Developer Preview. However, there will be a replacement in the next pre-release version of WinRT. |
|||
|
|
|
Use System.Net.WebUtility instead |
|||||
|
|
System.Xml? (although, of course, if it's not really XML, but HTML you might want to look at the HTML Agility Pack) – Rowland Shaw Dec 1 '11 at 14:02