[Mono-bugs] [Bug 73280][Nor] New - System.Uri.ToString() does not unescape %23 (#)

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 3 Mar 2005 08:52:11 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by sebastian.droege@gmx.de.

http://bugzilla.ximian.com/show_bug.cgi?id=73280

--- shadow/73280	2005-03-03 08:52:11.000000000 -0500
+++ shadow/73280.tmp.18625	2005-03-03 08:52:11.000000000 -0500
@@ -0,0 +1,34 @@
+Bug#: 73280
+Product: Mono: Class Libraries
+Version: 1.1
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: sebastian.droege@gmx.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: System.Uri.ToString() does not unescape %23 (#)
+
+Description of Problem:
+
+when creating a new System.Uri from a string with "%23" and returning the
+unescaped string from this the %23 aren't converted to a # character.
+
+Steps to reproduce the problem:
+1. System.Console.WriteLine((new System.Uri("file:///%23")).ToString());
+
+Actual Results:
+file:///%23
+
+Expected Results:
+file:///#
+
+How often does this happen? 
+every time