An app was written by another developer. App contains multiple projects. One was written in VB and another in C#. Why? I don't know.
I created a helper class called "FolderLocation" which is in the VB project.
VbProj -> HelperClass (Folder) - FolderLocation (Class)
I want to reference the Folder in the C# project
C#Proj -> DeliveryEmailer (Folder) -> Sender (Class).
There is a project dependency to the C# Proj in the VB Proj. I can't add a project dependency to the C# referencing the VB Proj because it will create a circular reference.
Any ideas?