S
Slavan
I am trying to execute following code:
Type type = Type.GetTypeFromProgID("SomeType.SomeClass", true);
object helper = Activator.CreateInstance(type);
and get following RemotingException (in 2-nd line):
Cannot load type SomeType.SomeClass, SomeType.SomeClass,
Version=1.0.2658.25296, Culture=neutral, PublicKeyToken=null
There is no other info why it breaks. I can't figure out what is going
wrong.
SomeType.SomeClass is installed as a COM+ component. I checked "type"
for null and it's not null.
Any help would be appreciated.
Type type = Type.GetTypeFromProgID("SomeType.SomeClass", true);
object helper = Activator.CreateInstance(type);
and get following RemotingException (in 2-nd line):
Cannot load type SomeType.SomeClass, SomeType.SomeClass,
Version=1.0.2658.25296, Culture=neutral, PublicKeyToken=null
There is no other info why it breaks. I can't figure out what is going
wrong.
SomeType.SomeClass is installed as a COM+ component. I checked "type"
for null and it's not null.
Any help would be appreciated.