我的情况是下一个:我正在使用Visual C#2010 express开发
Windows窗体应用程序.当用户登录时,dinamically构建一个从数据库表加载选项的menustrip.在该表中,我保存id,选项名称和表单名称.
所以,假设在我的项目中,我有一个名为Contabilidad的表单,它有Contabilidad.cs是主类,所以如果我想创建一个新的表单,并显示它,我这样做:
Contabilidad frmConta = new Contabilidad(); frmConta.Show();
但是在这种情况下,由于菜单选项存储在数据库中,所以在数据库中只有字符串“Contabilidad”.所以,我想使用C#反射创建一个Contabilidad的实例或任何其他只有字符串格式的类名称的形式.
首先我试过这个:
Form frmConta= (Form)Activator.CreateInstance(null,"Contabilidad").Unwrap();
因为我读了一个StackOverflow问题,如果我使用null我指的是当前的程序集(我的表单都在同一个项目),但我得到这个消息:
Could not load type 'Contabilidad' from assembly 'AccountingSA,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null'.
类的定义是下一个:
namespace AccountingSA { public partial class Contabilidad : Form { public Contabilidad() { InitializeComponent(); } ...
我也试过这个:
Assembly assembly = Assembly.Load("AccountingSA"); Type t = assembly.GetType("Contabilidad"); Form frmConta = (Form)Activator.CreateInstance(t);
但我得到ArgumentNullException与此消息:
Value cannot be null. Parameter name: type
因为t变量为空.
我做错了什么?提前致谢.
解决方法
使用类型的完全限定名称:
Type t = assembly.GetType("AccountingSA.Contabilidad");
name Type: System.String The full name of the type. […] The name parameter includes the namespace but not the assembly.