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 [EMAIL PROTECTED]

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: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
 QAContact: [EMAIL PROTECTED]
 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 [EMAIL PROTECTED]  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 ();
+  }
+}
+
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to