[Mono-bugs] [Bug 54415][Nor] New - Module FullyQualifiedName
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 16 Feb 2004 05:18:20 -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 marek.safar@seznam.cz.
http://bugzilla.ximian.com/show_bug.cgi?id=54415
--- shadow/54415 2004-02-16 05:18:20.000000000 -0500
+++ shadow/54415.tmp.3540 2004-02-16 05:18:20.000000000 -0500
@@ -0,0 +1,41 @@
+Bug#: 54415
+Product: Mono/Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: marek.safar@seznam.cz
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Module FullyQualifiedName
+
+Description of Problem:
+
+using System.Reflection;
+using System;
+
+public class Simple
+{
+ public static void Main ()
+ {
+ foreach (Module mod in Assembly.GetExecutingAssembly().GetModules ()) {
+ Console.WriteLine ("Module FullyQualifiedName is " +
+mod.FullyQualifiedName);
+ }
+ }
+ }
+
+
+Steps to reproduce the problem:
+1. compile
+2. run
+
+FullyQualifiedName returns only short module name and not fully quilified
+name with path.