Re: [Mono-devel-list] Small patch for System.Web.HttpUtility

2005-05-12 Thread Atsushi Eno
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

2005-05-09 Thread Kazuki Oikawa
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