本文介绍了我如何创建一个字符串,它提供的类名的实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有写与类名作为参数的功能,这是字符串的函数。所以,我需要创建这个类名称实例。
createInstance建立(串类名){
.............
//这里我需要创建类名的情况下,
.............
}
解决方案
Activator.CreateInstance(Type.GetType(类名));
I have to write a function with class Name as Parameter to function, which is in string. So that i need to create instance of this class name.
createInstance(string ClassName){
.............
//Here i Need to create instance of ClassName,
.............
}
解决方案
Activator.CreateInstance(Type.GetType(ClassName));
这篇关于我如何创建一个字符串,它提供的类名的实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!