How to call VB.NET DLL from C++ (Call the functions also - not DLL file only)
问题 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 is I can't call the function of VB.NET DLL file ( I can only load the VB.NET DLL file) in VB.NET DLL I have the following code: Public Function example_function1(ByVal i As Integer) As Integer Return 3 End Function Public Function example_function2(ByVal i As Integer) As Integer Return 3 End Function ============================