I tried to pass the dll vb.net link to a C ++ project. I managed to add the link successfully, but I cannot use it in my code.
I have the following link:

I am trying to use it like:
Configuration::MyClass::MyFunction()
I got the following error:
error C2653: 'Configuration' : is not a class or namespace name
What am I doing wrong? Do I need to add a header file?
source
share