I have a .net dll, and when I add it to the links, it goes without any problems. The problem is that his namespaces start with an integer, for example. 3gppsa5.org.AlarmIRPSystem , and when I try to use or import it, intelliSense does not allow and the identifier is expected .
I do not have the source of this library, so I can not change it. I know that it is compiled, and the Object Browser correctly displays all its classes and functions. However, I cannot use it in my code. Is there any way to use it in VB.NET.
I tried using Reflection but found a lot of problems. I want to declare a variable something like:
Dim MyIRP As 3gppsa5.org.AlarmIRPSystem.AlarmIRP
Is there any way to achieve this without using reflection and full intellisense support.
Thank.
source
share