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=82620

--- shadow/82620        2007-08-29 07:08:52.000000000 -0400
+++ shadow/82620.tmp.30865      2007-08-29 07:18:55.000000000 -0400
@@ -84,6 +84,24 @@
 
 
 ------- Additional Comments From [EMAIL PROTECTED]  2007-08-29 07:08 -------
 To reproduce:
 1. gmcs Bug.cs -r:System.Data
 2. mono --debug Bug.cs
+
+------- Additional Comments From [EMAIL PROTECTED]  2007-08-29 07:18 -------
+Here's a smaller repro:
+
+using System;
+using System.Data;
+
+public class Test
+{
+       public static void Main()
+       {
+               DataTable table=new DataTable("Appointments");
+               DataRow row;
+               DataTable raw=new DataTable();
+               row = table.NewRow();
+               row["provider"]+=" ("+raw.Rows[0]["ProvAbbr"].ToString()+")";
+       }
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to