dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Xml XmlTextWriter.cs,1.13,1.14


From: adam ballai <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Xml XmlTextWriter.cs,1.13,1.14
Date: Wed, 15 Jan 2003 23:54:19 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Xml
In directory subversions:/tmp/cvs-serv25717/System.Xml

Modified Files:
        XmlTextWriter.cs 
Log Message:


Index: XmlTextWriter.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/XmlTextWriter.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** XmlTextWriter.cs    15 Jan 2003 20:30:00 -0000      1.13
--- XmlTextWriter.cs    16 Jan 2003 04:54:16 -0000      1.14
***************
*** 976,980 ****
                                else
                                {
!                                       writer.Write(data);
                                }
                        }
--- 976,981 ----
                                else
                                {
!                                       char[] buffer = data.ToCharArray();
!                                       WriteChars(buffer, 0 , buffer.Length);
                                }
                        }
***************
*** 1005,1009 ****
                                else 
                                {
!                                       writer.Write(buffer, index, count);
                                }
                        }
--- 1006,1010 ----
                                else 
                                {
!                                       WriteChars(buffer, index, count);
                                }
                        }
***************
*** 1577,1581 ****
  
                                // Quote the string and output it.
!                               WriteChars(text.ToCharArray(), 0, text.Length);
                        }
  
--- 1578,1582 ----
  
                                // Quote the string and output it.
!                               WriteQuotedString(text);
                        }
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]