I want to ask question about how to call VB.NET DLL from C++ program
I have tried many times to call VB.NET DLL file from C++ and it is working fine but the problem
You can't directly access .NET code from native C++, you will need C++/CLI for that.
If your program needs to be native C++, there is the possibility of writing a mixed-mode wrapper DLL which provides a native C++ interface for the main program, and uses C++/CLI in the implementation to forward calls to the .NET DLL.
"Class1::example_function1"
could be valid identifier. Normally it's only used with extern "C"
(or implemented in C without ++) functions, which are not mangled.You would need to write a wrapper on C++/CLI for that . You might find the following link helpful. http://www.codeproject.com/KB/mcpp/cppcliintro01.aspx
Since your vb assembly needs a totally different runtime than the 'native' executable, you will need to use some layer in between. This layer may be COM.
You can expose your assembly to the COM subsystem by it's 'ComVisible' property. Then, you should register the assembly to expose it to COM 'subscribers'.
Only then you can #import
the assembly namespace from your c++ code.
Note: this is a very brief version of an msdn article "How to call a managed DLL from native Visual C++ code"
EDIT-- Just tried it out... and it seems to work allright:
C# code
namespace Adder
{
public interface IAdder
{
double add(double a1, double a2);
}
public class Adder : IAdder
{
public Adder() { }
public double add(double a1, double a2) { return a1 + a2; }
}
}
Project settings
[assembly: ComVisible(true)]
[assembly: AssemblyDelaySign(false)]
(Signing was needed in order to be able to generate the tlb)
C++ code:
#import <adder.tlb> raw_interfaces_only
CoInitialize(NULL);
Adder::IAdderPtr a;
a.CreateInstance( __uuidof( Adder::Adder ) );
double d = 0;
a->add(1.,1., &d);
// note: the method will return a HRESULT;
// the output is stored in a reference variable.
CoUninitialize();