F
Franz Pentenrieder
Hello,
i want to load Type's from executing assembly within a library that is
loaded by the main programm. Problem is a call like this works only for
Type's within the current assembly.
Type tempType = Type.GetType( "NamespaceFromTheMainProgramm.ClassName" );
So i tried something like this,
System.Reflection.Assembly tempAssebmy =
System.Reflection.Assembly.GetExecutingAssembly();
Type tempType = tempAssebmy.GetType(
"NamespaceFromTheMainProgramm.ClassName" );
But this also dosen't work. Is there any way i can get this Types?
i want to load Type's from executing assembly within a library that is
loaded by the main programm. Problem is a call like this works only for
Type's within the current assembly.
Type tempType = Type.GetType( "NamespaceFromTheMainProgramm.ClassName" );
So i tried something like this,
System.Reflection.Assembly tempAssebmy =
System.Reflection.Assembly.GetExecutingAssembly();
Type tempType = tempAssebmy.GetType(
"NamespaceFromTheMainProgramm.ClassName" );
But this also dosen't work. Is there any way i can get this Types?