我有一个这样的字符串:
typeStr = label1.GetType().ToString();
现在我想type
通过typeStr
.
我尝试了一些类似Type.GetType(typeStr)
但没有帮助的功能。
有什么简单的获取方法type
吗?
您可以传递全Type
名
Type type = Type.GetType("System.Windows.Forms.Label");
这将创建类型并创建您可以使用的对象实例Activator.CreateInstance
object obj = Activator.CreateInstance(type);
Type
已加载AppDomain.CurrentDomain.GetAssemblies()
private void btnAddDymanicLabel_Click(object sender, EventArgs e)
{
Type type = GetTypeNameFromDomain("System.Windows.Forms.Label");
Label lbl = (Label) Activator.CreateInstance(type);
this.Controls.Add(lbl);
lbl.Text = "dynamic created control";
}
private Type GetTypeNameFromDomain(string typename)
{
return AppDomain.CurrentDomain.GetAssemblies().SelectMany(assembly => assembly.GetTypes().Where(type => type.FullName == typename)).FirstOrDefault();
}
一个简单的例子:
static void Main(string[] args)
{
Type type = Type.GetType("System.Int32");
object obj = Activator.CreateInstance(type);
int num = (int) obj;
num = 10;
Console.WriteLine(num); // prints : 10
}
您的意思是您只想从这样的字符串中获取该类型的实例吗
classname instance = Activator.CreateInstance("<assemblyname>","<classname>") as classname;
尝试获取名称
typeStr = label1.GetType().GetFullName();
然后
type = Type.GetType(typeStr);