G
Guest
I have a simple application in C++ that uses a dll I wrote in C#. It works
fine when I run it on C: on my local PC, but when I attempt to run it on the
i: drive on my LAN, it gets a loading permission error, presumably when
loading my c# dll. I gather that I must set an attribute in my C++ program to
grant security to load the dll, but I can not figure out what to use. Here is
my c++ program:
#include <stdio.h>
#using <csfu.dll>
void main(void)
{
printf("In Mancfu\n");
MBSFu::AClass::AFun();
}
What needs to be added? Thanks.
fine when I run it on C: on my local PC, but when I attempt to run it on the
i: drive on my LAN, it gets a loading permission error, presumably when
loading my c# dll. I gather that I must set an attribute in my C++ program to
grant security to load the dll, but I can not figure out what to use. Here is
my c++ program:
#include <stdio.h>
#using <csfu.dll>
void main(void)
{
printf("In Mancfu\n");
MBSFu::AClass::AFun();
}
What needs to be added? Thanks.