2003-02-28 Alan Tam <Tam@SiuLung.com>
[mono.git] / mcs / class / System.XML / System.Xml / XmlTextWriter.cs
index 799b336902d0a4b8c5d42ed25a5fbb03a7e49b9d..3f6c19e29841cd6cd77cfe291943e82d5c6c3f45 100644 (file)
@@ -487,10 +487,9 @@ namespace System.Xml
                        WriteStringInternal (data, false);
                }
 
-               [MonoTODO]
                public override void WriteRaw (char[] buffer, int index, int count)
                {
-                       throw new NotImplementedException ();
+                       WriteStringInternal (new string (buffer, index, count), false);
                }
 
                public override void WriteStartAttribute (string prefix, string localName, string ns)