Creating a C++ DLL and then using it in C#
- by Major
Ok I'm trying to make a C++ DLL that I can then call and reference in a c# App. I've already made a simple dll using the numberous guides out there, however when I try to reference it in the C# app I get the error
Unable to load DLL 'SDES.dll': The specified module could not be found.
The code for the program is as follows (bear with me I'm…