G
Guest
I am under the assumption that in vb.net the followin
Dim objClass as Object = Activator.CreateInstance(Type
Dim myClass as MyTestClass = DirectCast(objClass,MyTestClass
would be the equivalent o
Dim myClass as MyTestClass = New MyTestClas
Or do i need to add the following to CreateInstanc
Dim objClass as Object = Activator.CreateInstance(Type, New Object()
Dim myClass as MyTestClass = DirectCast(objClass,MyTestClass
Thank
Dim objClass as Object = Activator.CreateInstance(Type
Dim myClass as MyTestClass = DirectCast(objClass,MyTestClass
would be the equivalent o
Dim myClass as MyTestClass = New MyTestClas
Or do i need to add the following to CreateInstanc
Dim objClass as Object = Activator.CreateInstance(Type, New Object()
Dim myClass as MyTestClass = DirectCast(objClass,MyTestClass
Thank