WebUtility.HtmlDecode vs HttpUtilty.HtmlDecode
The implementation of the two methods are indeed different on Windows Phone. WebUtility.HtmlDecode: public static void HtmlDecode(string value, TextWriter output) { if (value != null) { if (output == null) { throw new ArgumentNullException(“output”); } if (!StringRequiresHtmlDecoding(value)) { output.Write(value); } else { int length = value.Length; for (int i = 0; i < length; i++) … Read more