[Mono-bugs] [Bug 77623][Nor] Changed - XmlTextWriter(2).WriteRaw
regression
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Feb 23 14:08:10 EST 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 gert.driesen at pandora.be.
http://bugzilla.ximian.com/show_bug.cgi?id=77623
--- shadow/77623 2006-02-23 07:31:50.000000000 -0500
+++ shadow/77623.tmp.2920 2006-02-23 14:08:10.000000000 -0500
@@ -1,23 +1,23 @@
Bug#: 77623
Product: Mono: Class Libraries
Version: unspecified
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
-Priority: Wishlist
-Component: CORLIB
+Severity: Unknown
+Priority: Normal
+Component: Sys.XML
AssignedTo: mono-bugs at ximian.com
ReportedBy: hys545 at dreamwiz.com
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: nant-cvs-2006-2-23 running Error(using mono-svn 57196)
+Summary: XmlTextWriter(2).WriteRaw regression
Please fill in this template when reporting a bug, unless you know what you
are doing.
Description of Problem:
I install mono-svn-57196
@@ -52,6 +52,25 @@
How often does this happen?
Additional Information:
+
+------- Additional Comments From gert.driesen at pandora.be 2006-02-23 14:08 -------
+The new implementation of XmlTextWriter introduced a regression in
+XmltextWriter.WriteRaw.
+
+To reproduce, compile and run the following code snippet:
+
+using System.IO;
+using System.Xml;
+
+public class Test {
+ static void Main () {
+ XmlTextWriter xtw = new XmlTextWriter (new StringWriter ());
+ xtw.WriteStartDocument (true);
+ xtw.WriteRaw ("{0}{1}");
+ xtw.Flush ();
+ }
+}
+
More information about the mono-bugs
mailing list