我有以下代码来根据类名创建我的一个类的实例。
'Get a System.Type corresponding to the name of the parent class
Dim tt As Type = Type.GetType(item.ParentClass)
'Create an instance of the specified type using the types default constructor
Dim theObject As Object = Activator.CreateInstance(tt)
如果我有完整的课程,这很好用,MainClassName.Namespace.ClassName
但如果我尝试用 just 来做到这一点,就ClassName
等于 tt
没有。
有没有办法使用ClassName
和获取完全限定名称,如MainClassName.Namespace.ClassName