[Mono-bugs] [Bug 82620][Nor] Changed - "Invalid IL code" error message

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Wed Aug 29 07:18:55 EDT 2007


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 frederik.carlier at ugent.be.

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 frederik.carlier at ugent.be  2007-08-29 07:08 -------
 To reproduce:
 1. gmcs Bug.cs -r:System.Data
 2. mono --debug Bug.cs
+
+------- Additional Comments From frederik.carlier at ugent.be  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()+")";
+	}
+}


More information about the mono-bugs mailing list