1
I am learning to develop C#Dlls, using Unmanagedexports to be exported to another language (Clarion)
The DLL works, but with one exception: the application only "sees" the DLL in the main folder "C: " and not in the current folder. I noticed that inside the DLL file is " file.dll".
How to solve this problem?
I couldn’t find any online documentation of the Clarion. To resolve the problem you have to change the folder where the application is running, in case it is looking for the DLL on
root_path
(C:) and not in the current directory.– CypherPotato