[Mono-bugs] [Bug 78374][Wis] New - [2.0] Uri OriginalString can
return null.
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu May 11 15:17:43 EDT 2006
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 grompf at sublimeintervention.com.
http://bugzilla.ximian.com/show_bug.cgi?id=78374
--- shadow/78374 2006-05-11 15:17:43.000000000 -0400
+++ shadow/78374.tmp.31662 2006-05-11 15:17:43.000000000 -0400
@@ -0,0 +1,34 @@
+Bug#: 78374
+Product: Mono: Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: System
+AssignedTo: atsushi at ximian.com
+ReportedBy: grompf at sublimeintervention.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: [2.0] Uri OriginalString can return null.
+
+The following testcase:
+
+using System;
+
+class T{
+ static void Main (string [] args) {
+ Uri a = new Uri ("http://www.mono-project.com");
+ Uri b = new Uri (a, "docs");
+
+ Console.WriteLine (b.OriginalString);
+ }
+}
+
+is null on mono; and "http://www.mono-project.com/docs" on ms.net.
+
+-g
More information about the mono-bugs
mailing list