B
Bob
Does anyone know why I would get this error when running the below code? I
am using C# no c++ at all.
First-chance exception at 0x7c812a5b in myservice.exe: Microsoft C++
exception: EETypeLoadException at memory location 0x0012e1d0..
code...
AssemblyName Name = AssemblyName.GetAssemblyName("c:\myassembly.dll");
Assembly plug = Assembly.Load(Name);
Type[] types = plug.GetExportedTypes(); <-- Exception thrown at this line.
Bob
am using C# no c++ at all.
First-chance exception at 0x7c812a5b in myservice.exe: Microsoft C++
exception: EETypeLoadException at memory location 0x0012e1d0..
code...
AssemblyName Name = AssemblyName.GetAssemblyName("c:\myassembly.dll");
Assembly plug = Assembly.Load(Name);
Type[] types = plug.GetExportedTypes(); <-- Exception thrown at this line.
Bob