[Mono-bugs] [Bug 71375][Nor] Changed - the runtime gives incomplete exception stack trace

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 21 Jan 2005 12:04:04 -0500 (EST)


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 atsushi@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=71375

--- shadow/71375	2005-01-21 09:05:26.000000000 -0500
+++ shadow/71375.tmp.31075	2005-01-21 12:04:04.000000000 -0500
@@ -128,6 +128,25 @@
     </Quota>
   </diffgr:diffgram>
 </DataSet>
 
 ------- Additional Comments From vargaz@gmail.com  2005-01-21 09:05 -------
 Err, it still doesn't throw an exception even with the new file.
+
+------- Additional Comments From atsushi@ximian.com  2005-01-21 12:04 -------
+Ugh, sorry again. I need to put another code:
+
+
+using System;
+using System.Data;
+using System.Xml;
+using System.Xml.Serialization;
+
+public class Test
+{
+        public static void Main ()
+        {
+                XmlSerializer ser = new XmlSerializer (typeof (DataSet));
+                ser.Deserialize (new XmlTextReader ("70961.xml"));
+        }
+}
+