Re: [Mono-devel-list] Small patch for System.Web.HttpUtility
Hi, Patch applied as 44486. 39(w Atsushi Eno Kazuki Oikawa wrote: > Hi > > This attached patch corrects the following problem. > > byte[] bytes = System.Web.HttpUtility.UrlDecodeToBytes ("%5c"); > Console.WriteLine (bytes[0].ToString ("x2")); > > A
[Mono-devel-list] Small patch for System.Web.HttpUtility
Hi This attached patch corrects the following problem. byte[] bytes = System.Web.HttpUtility.UrlDecodeToBytes ("%5c"); Console.WriteLine (bytes[0].ToString ("x2")); Actual Results: 05 Expected Results: 5c Please review it. Best regards. Kazuki OikawaI