I have 2 projects in a solution, one a vb.net class library project, another a C# class library project.
As far as I was aware I was able to compile both and reference each from the other project, (one way at a time).
I can reference namespaces / classes found in the VB.NET project within the C# project. However I don't seem to be able to do the same in the opposite direction. I can't seem to use any namespaces / classes exposed in the C# library from within the VB.NET project, even though the library appears to be referenced correctly.
Am I missing something here?
EDIT: I am aware that cyclic references are not permitted and no I am not referencing each library from the other at the same time. I don't have any compilation errors relating to cyclic referencing.