Forum

DLL supporting language

Hello, Is it possible to use a DLL which is created with C#.NET with MT5? Or is C++ the only way to go. Please advise. Thanks

Calling DLL Exports function in MT5

Hello, I am trying to create a DLL which exports certain functions that can be imported and called in MT5. However, I have a problem. Let's take the following as an example. extern "C" __declspec(dllexport) char * PrintMessage(); #import "Sample.dll" string PrintMessage(); #import Is this the