In my project, several new C # modules and one C module (not C ++) compiled using win32 system calls. I use the PInvoke interaction layer to invoke C code from C #. Function C is called.
All modules write to one bin directory and write all pdb files.
When starting and stopping at a breakpoint just before the call to C.dll, I see that the breakpoints in the C module are disabled. Looking At Debug List | Windows | Modules I do not see the C.dll module loading even after the call has been completed.
Another fact: in the solution | Properties | Configuration Properties | Configuration shows C # modules using Platform = "Any processor" and C-module using "Win32"
Why is the module not loaded and why its symbols are not loading?
Thanks Max
source share