L
lothar.behrens
Hi,
I have some code, where I am using a variable for a given interface.
One step later, using Remoting, I need Type.TypeOf("...")
The following code returns Nothing, but the type above could be
declared for a variable.
Dim appMgr As MyInterfaces.IFoo
Dim myType As System.Type = Type.GetType("MyInterfaces.IFoo")
' myType is Nothing !!
Dim prx As MarshalByRefObject = Activator.GetObject(myType,
completeurl)
Any ideas ?
Thanks, Lothar
I have some code, where I am using a variable for a given interface.
One step later, using Remoting, I need Type.TypeOf("...")
The following code returns Nothing, but the type above could be
declared for a variable.
Dim appMgr As MyInterfaces.IFoo
Dim myType As System.Type = Type.GetType("MyInterfaces.IFoo")
' myType is Nothing !!
Dim prx As MarshalByRefObject = Activator.GetObject(myType,
completeurl)
Any ideas ?
Thanks, Lothar