[Mono-bugs] [Bug 49114][Min] New - Type.GetType ("&xx") hangs
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 30 Sep 2003 13:46:15 -0400 (EDT)
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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=49114
--- shadow/49114 2003-09-30 13:46:15.000000000 -0400
+++ shadow/49114.tmp.23256 2003-09-30 13:46:15.000000000 -0400
@@ -0,0 +1,35 @@
+Bug#: 49114
+Product: Mono/Runtime
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Type.GetType ("&xx") hangs
+
+The following program hangs in Mono:
+
+using System;
+using System.Reflection;
+
+public class Sample
+{
+ public static void Main()
+ {
+ Assembly a = Assembly.Load("corlib.dll");
+ Console.WriteLine("1");
+ Type t = a.GetType("&blabla", true, true);
+ Console.WriteLine("2");
+
+ }
+
+}