I am facing this problem
1. I have to load a C++ DLL into my C# code.
2. The method in the DLL which i want to access is
GetNames(&strCStringArrayClass)
This method takes a pointer to the CStringArray Class Object and populates the array of strings.
If I use DllImport (pInvoke) method, how should i write the prototype for the exported method???
is there any other way of doing this?
Please Help
1. I have to load a C++ DLL into my C# code.
2. The method in the DLL which i want to access is
GetNames(&strCStringArrayClass)
This method takes a pointer to the CStringArray Class Object and populates the array of strings.
If I use DllImport (pInvoke) method, how should i write the prototype for the exported method???
is there any other way of doing this?
Please Help