What's the simplest #programming language to call functions in a DLL from? Must also have a good debugger/IDE
What's the simplest #programming language to call functions in a DLL from? Must also have a good debugger/IDE
@voltagex depending on the DLL, can be any of the MS languages. If it’s a VB DLL, you’ll want VB.net, if it’s a C DLL, some can be more annoying to interface with than others with C#, so you might want to fall back to C++.
But almost all are easily exposed via C#, which takes very little work to expose and interact with, sometimes as little as three lines of code.