I have a multi-project .NET 3.5 solution.
It is based on ASP.NET based on C # code in all but one of the projects.
I am trying to access elements from a C # project called "Core" from a VB.NET project.
I have established a dependency on a Core solution in my solution properties.
However, Core. nothing raises.
In addition, my other C # projects that have a Core-Project as a dependency (in the solution settings) can declare Core objects. Example: Private Core.ObjectName InstanceName; In addition, Intellisense displays a lot of information about C # projects.
Any idea on how I can connect to these members from my VB project?
Thanks!